@font-face {
    font-family: 'Gilroy';
    src: url('/Fonts/Gilroy-Light.woff') format('woff');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/Fonts/Gilroy-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/Fonts/Gilroy-RegularItalic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/Fonts/Gilroy-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/Fonts/Gilroy-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/Fonts/Gilroy-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/Fonts/Gilroy-BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/Fonts/Gilroy-UltraLightItalic.woff') format('woff');
    font-weight: 200;
    font-style: italic;
}



body {
    font-family: 'Gilroy', sans-serif;
    color: #3d3e40;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: 7.5px;
  padding-left: 7.5px;
  margin-right: auto;
  margin-left: auto;
}

.menuHeader {
    font-weight: 700;
}

.menuSubHeader {
    font-weight: 500;
}

.menuItem {
    font-weight: 200;
}

.menuItem-reg {
    font-weight: 400;
}

.menuItem-heavy {
    font-weight: 700;
}

.base-font-colour{
    color: #3d3e40;
}

.cs-max-width {
    max-width: 500px;
    
}

.iframe-container {
    width: 50%;
    height: 50vh;
    border: none;
}

.card-title {
    color: #3d3e40;

    margin-bottom: 0.75rem;
  }

.login-card {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
}

.login-card-container {
    width: 300px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-card-title {
    width: 100%;
    text-align: left;
    font-size: 28px;
    font-family: 'Gilroy-Bold', sans-serif;
    font-weight: 400;
    color: #3d3e40;
    line-height: 36px;
    margin-bottom: 20px;
}

.login-card-label {
    color: #333333;
    font-size: 14px;
    font-family: 'Gilroy-SemiBold', sans-serif;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 7px;
}

.login-card-input-wrapper {
    width: 100%;
    margin-bottom: 20px;
}

.login-card-input {
    width: 100%;
    height: 36px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 8px;
    font-family: 'Gilroy-Regular', sans-serif;
    font-size: 14px;
    color: #747474;
}

.login-card-placeholder {
    color: #747474;
    font-size: 14px;
    font-family: 'Gilroy-Regular', sans-serif;
}

.login-card-button {

    background: #72BB6F;
    color: white;
    font-size: 14px;
    font-family: 'Gilroy-Bold', sans-serif;
    font-weight: 400;
    border: none;
    border-radius: 8px;
    text-align: center;
    line-height: 36px;
    cursor: pointer;
}

.login-card-footer{
    font-family: 'Gilroy-Regular', sans-serif;
    font-size: 14px;
    color: #747474;
    
}

.login-card-button:hover {
    background: #51dc51;
    color: white;

}

.check-service-button {
    background: #f07f3c;
    color: white;
    border: none;
    border-radius: 8px;
    text-align: center;
    line-height: 36px;
    cursor: pointer;

}

.check-service-button:hover {
    background: #ba5216;
    color: white;

}
/* Basic Button Styling */
.s-button {
    display: inline-block; /* Allows margin and padding control */
    background-color: #72bb6f; /* Primary button color */
    color: white; /* Text color */
    border: none; /* Remove default borders */
    border-radius: 6px; /* Slightly rounded corners */
    padding: 12px 24px; /* Spacing inside the button */
    font-size: 16px; /* Font size for readability */
    font-weight: 600; /* Slightly bold text */
    cursor: pointer; /* Pointer cursor on hover */
    transition: all 0.3s ease; /* Smooth transition for effects */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    text-align: center; /* Center text */
}

/* Hover Effect */
.s-button:hover {
    background-color: #45a049; /* Slightly darker green */
    transform: translateY(-3px); /* Lift effect */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Deeper shadow */
}

/* Active/Pressed State */
.s-button:active {
    background-color: #3e8e41; /* Even darker green */
    transform: translateY(1px); /* Pressed-down effect */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Reduced shadow */
}

/* Focus State */
.s-button:focus {
    outline: none; /* Remove default focus outline */
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.4); /* Custom focus outline */
}

/* Disabled State */
.s-button:disabled {
    background-color: #ccc; /* Light gray for disabled state */
    color: #777; /* Dimmed text color */
    cursor: not-allowed; /* Change cursor to indicate disabled state */
    box-shadow: none; /* Remove shadow */
}
/* Small Button */
.small-button {
    font-size: 0.75rem; /* Small text */
    padding: 6px 12px; /* Compact padding */
    background-color: #007bff; /* Primary blue background */
    color: #ffffff; /* White text */
    border: none; /* No border */
    border-radius: 4px; /* Slightly rounded corners */
    cursor: pointer; /* Pointer cursor */
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; /* Smooth transitions */
    display: inline-block; /* Inline for button layout */
    font-family: Arial, sans-serif; /* Simple, readable font */
    line-height: 1.2; /* Adjusted line height */
    text-align: center; /* Center text */
    text-decoration: none; /* No underline */
}

/* Hover State */
.small-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: translateY(-2px); /* Subtle lift effect */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Slight shadow */
}

/* Active State */
.small-button:active {
    background-color: #004494; /* Even darker blue */
    transform: translateY(1px); /* Pressed-down effect */
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2); /* Reduced shadow */
}

/* Focus State */
.small-button:focus {
    outline: none; /* Remove default outline */
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.4); /* Focus ring */
}

/* Disabled State */
.small-button:disabled {
    background-color: #cccccc; /* Light gray background */
    color: #777777; /* Dimmed text */
    cursor: not-allowed; /* Disabled cursor */
    box-shadow: none; /* Remove shadow */
}

/*  */ 

.animated-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 12px 36px;
    border: 4px solid;
    border-color: transparent;
    font-size: 12px;
    background-color: inherit;
    border-radius: 100px;
    font-weight: 700;
    color: #f07f3c;
    box-shadow: 0 0 0 2px #f07f3c;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .animated-button svg {
    position: absolute;
    width: 24px;
    fill: #f07f3c;
    z-index: 9;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .animated-button .arr-1 {
    right: 16px;
  }
  
  .animated-button .arr-2 {
    left: -25%;
  }
  
  .animated-button .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #f07f3c;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .animated-button .text {
    position: relative;
    z-index: 1;
    transform: translateX(-12px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .animated-button:hover {
    box-shadow: 0 0 0 12px transparent;
    color: #ffffff;
    border-radius: 12px;
  }
  
  .animated-button:hover .arr-1 {
    right: -25%;
  }
  
  .animated-button:hover .arr-2 {
    left: 16px;
  }
  
  .animated-button:hover .text {
    transform: translateX(12px);
  }
  
  .animated-button:hover svg {
    fill: #ffffff;
  }
  
  .animated-button:active {
    scale: 0.95;
    box-shadow: 0 0 0 4px #f07f3c;
  }
  
  .animated-button:hover .circle {
    width: 220px;
    height: 220px;
    opacity: 1;
  }
  


  .btn-link {
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
  }

  .btn-link:hover {
    color: #72bb6f;
    text-decoration: none;
  }


   
   
   
   .spacing-right {
    margin-right: 180px; /* Adjust the spacing as needed */
}


.option-selected {
    border: 2px solid #28a745;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}




@keyframes auroraFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

body {
    background: linear-gradient(45deg, #72bb6f,#52bbb5, #02aab0,#2dafe6, #c9338b,#f07f3c,#2dafe6, #00cdac, #a1ffce, #fbc2eb);
    background-size: 500% 400%;
    animation: auroraFlow 44s ease infinite;
    min-height: 100vh;
    color: #3d3e40;
    
}

.page-wrapper {
    padding-bottom: 90px; /* Adjust value as needed */
}

.page-wrapper-lg {
    padding-bottom: 1000px; /* Adjust value as needed */
}


.content-header h1 {
    color: #626366; /* Dark gray */
    font-weight: 700; 
    font-family: 'Gilroy', sans-serif;
    text-align: center; /* Center alignment */
}

/* .content-header h1 span {
    font-weight: normal; 
} */

.content-header p {
    font-family: 'Gilroy', sans-serif;
    font-weight: 400; 
    color: #626366;
}
/* General Page Styling */
/* body {
    background: linear-gradient(160deg, #ffffff, #99f2c8);
    font-family: 'Inter', sans-serif;
} */

/* Custom Card Styling */
.card {
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    overflow: hidden;
    background: #fff;
}

.card-NB {
    border-radius: 15px; /* Rounded corners */
    overflow: hidden;
    background: #fff;
}

.card-testing {

    border: 2px solid rgba(238, 0, 0, 0.98);

}

.flex-container-row {
    display: flex;
    flex-direction: row;
  }


.card-border-outline {
border-radius: 8px;
margin: 1.25rem;
padding: 1em;
border: 1px solid #d4d3d3;
}

.alert {
    border-radius: 15px; /* Rounded corners */
}





/* Custom Tab Styling */
.custom-tabs .nav-link {
    color: #6c757d; /* Default color for tabs */
    font-weight: 500;
}

.custom-tabs .nav-link:hover {
    color: #dfa81f; /* Highlight on hover */
    background-color: #f8f9fa; /* Light background */
}

.custom-tabs .nav-link.active {
    color: #fff; /* White text for active tab */
    background-color: #72bb6f; /* Active tab background */
    font-weight: 600; /* Bold text */
}




.msheader{
    background-color: #f8f9fa;
    color: #495057;
    border-color: #dee2e6;
}


.kci-container{
    /* -ms-flex: 1 1 auto;
    flex: 1 1 auto; */
    min-height: 1px;
    padding: 1.25rem;
    margin: 1.25rem;
    background: #ffffff00;

}


/* Custom Milestone Content Styling */

.milestone-c {
    position: relative;
    padding: 2em;

    /* A slightly translucent white background to achieve glass-like effect */
    background: rgba(255, 255, 255, 0.134);
    /* border: 1px solid rgb(92, 92, 92); */
    border-radius: 12px;
    /* display: flex;
    align-items: flex-start; */
    gap: 12px;
    /* padding: 18px; */
    max-width: 550px;
    margin: 0 auto;
    margin-bottom: 28px;
    /* A subtle shadow and blur for the glass look */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    /* backdrop-filter: blur(5px); */
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;

}

/* Subtle highlight bar */
/* Default highlight style */
.milestone-highlight {
    width: 7px;
    height: 100%;
    /* background: linear-gradient(180deg, #7dff99, #5BBFE8); */
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    position: absolute;
    left: 0;
    top: 0;
}

/* Variants for each KCI Stage */
.milestone-highlight.kci1 {
    background: #c9338b; 
    /* background: linear-gradient(180deg, #d6798b, #c836a6);  */
}
.milestone-highlight.kci2 {
    background: #2dafe6; }

.milestone-highlight.kci3 {
    background: #72bb6f; }

.milestone-highlight.kci4 {
    background: #fbbc43; }

.milestone-highlight.kci5 {
    background: #814997; }

.milestone-highlight.kci6 {
    background: #f07f3c; }

.milestone-content {
    /* flex-grow: 1;
    display: flex;
    /* flex-direction: column; */
    margin-left: 20px;
}

.milestone-header {
    margin-bottom: 8px;
}

.milestone-header h5 {
    color: #2B2B2B;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.milestone-time {
    color: #5C5C5C;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    margin: 4px 0 0;
}

.milestone-body {
    color: #2B2B2B;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    word-wrap: break-word;
}

/* Alert Variant 
   A soft, warm pastel yellow with a gentle amber accent */
.milestone-c.alert {
    background: rgba(255, 249, 218, 0.4);
    border: 1px solid rgba(251, 218, 112, 0.588);
    /* backdrop-filter: blur(15px); */
}

.milestone-c.alert .milestone-highlight {
    background: linear-gradient(180deg, #FBBC43, #F9A525);
}

.milestone-c.alert .milestone-header h5 {
    color: #6E5D2E;
}

.milestone-c.alert .milestone-time,
.milestone-c.alert .milestone-body {
    color: #6E5D2E;
}

.milestone-c.alert::after {
    content: "\f06a"; /* Font Awesome exclamation-circle icon */
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900;
    color: #A67C1C; 
    font-size: 18px;
    position: absolute;
    top: 16px;
    right: 16px;
    opacity: 0.8;
}

/* Warning Variant
   A pale rose tint with a gentle red accent */
.milestone-c.warning {
    background: rgba(255, 220, 220, 0.4);
    border: 1px solid rgba(255, 180, 180, 0.3);
    /* backdrop-filter: blur(15px); */
    border-radius: 12px;
}

.milestone-c.warning .milestone-highlight {
    background: linear-gradient(180deg, #F28D8D, #E67474);
}

.milestone-c.warning .milestone-header h5 {
    color: #862B2B;
}

.milestone-c.warning .milestone-time,
.milestone-c.warning .milestone-body {
    color: #862B2B;
}

.milestone-c.warning::after {
    content: "\f071"; /* Font Awesome exclamation-triangle icon */
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900;
    color: #A33A3A; 
    font-size: 18px;
    position: absolute;
    top: 16px;
    right: 16px;
    opacity: 0.8;
}

/*
Colour boarder of last card
*/
.milestone-c.recent {
    position: relative;
    /* border: 1px solid rgba(133, 128, 128, 0.3); */

}

.milestone-c.recent::after {
    content: ""; /* No text or icon, just a dot */
    position: absolute;
    top: 8px; /* Adjust to position the dot */
    right: 8px; /* Adjust to position the dot */
    width: 10px; /* Width of the dot */
    height: 10px; /* Height of the dot (makes it a circle) */
    background: #FF0000; /* Red color for the dot */
    border-radius: 50%; /* Makes it circular */
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2); /* Optional: Add a shadow for emphasis */
    z-index: 10; /* Ensure it sits above other elements */
    
}








/* Welcome Image Styling */
.welcome-image img {
    border-radius: 15px;
}

/* Tabs Shadow */
.tabsShadow {
    background: rgba(0, 0, 0, 0.1);
}

/* Section Content Styling */
.content {
    border-radius: 15px; /* Smooth edges for content */
    background: #f9f9f9;
    padding: 20px;
}


/* Welcome Message Section */

.dashboard-header{
    font-size: 1.75rem; /* Larger text */
    font-family: 'Gilroy', sans-serif;
    font-weight: 700; 
    color: #3d3e40; /* Dark gray color */
    margin-bottom: 0.5rem;

}

.content-header {
    background-color: rgb(246, 246, 246);
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
}

.page-header{
    background: linear-gradient(to right, #2dafe6, #72bb6f); 
    /* background: linear-gradient(to right, #f07f3c, #c9338b);  */
    margin-bottom: 2rem; 
    padding: 2rem;
    
}

.welcome-card {
    margin-bottom: 1.5rem; /* Space below the card */
    font-family: 'Gilroy', sans-serif;
    font-weight: 700; 

    width: 75%; /* Card width */
    margin-left: auto; /* Center horizontally */
    margin-right: auto; /* Center horizontally */
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    background: #ffffff; /* Card background color */
    overflow: hidden;
}

.welcome-card .card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px; /* Space inside the card */
}

.welcome-card .welcome-text {
    flex: 1; /* Make the text take up available space */
    padding-right: 20px; /* Space between text and image */
}

.welcome-card .welcome-text h3 {
    font-size: 1.75rem; /* Larger text */
    font-weight: bold; /* Bold text */
    font-family: 'Gilroy', sans-serif;
    font-weight: 400; 

    color: #3d3e40; /* Dark gray color */
    margin-bottom: 0.5rem;
}

.welcome-card .welcome-text p {
    font-size: 1rem;
    font-family: 'Gilroy', sans-serif;
    font-weight: 400; 

    color: #3d3e40; /* Medium gray color */
}
.welcome-card .welcome-image img {
    width: 100%; /* Ensure the image scales to its container */
    max-width: 280px; /* Limit the maximum width */
    height: auto; /* Maintain the aspect ratio */
    border-radius: 15px; /* Rounded image corners */
}

.card-body-cs {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
    margin: 1.25rem;
  }


/* Standardized Header Style for Tab Sections */
.tab-header {
    font-size: 1.5rem; /* Larger font size */
    font-weight: bold; /* Bold text */
    display: flex; /* Flex container for emoji and text */
    align-items: center; /* Align emoji and text vertically */
    color: #333; /* Dark gray color */
    margin-bottom: 1rem; /* Space below the header */
}

.tab-header .emoji {
    font-size: 2rem; /* Larger size for emoji */
    margin-right: 10px; /* Space between emoji and text */
}


/* Section Titles */
.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.content_header_custom {
    background:#f9f9f9;
}

.section-title i {
    margin-right: 8px;
}

/* Text Styling */
.info-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

/* Grouped Details */
.details-group {
    padding-left: 1rem;
    border-left: 3px solid #eee;
    margin-left: 0.5rem;
}

.details-group p {
    margin: 0.5rem 0;
}

/* Spacing */
.mb-4 {
    margin-bottom: 1.5rem !important;
}

.bg-primary_custom {
    background-color: #72bb6f !important;
  }

/*

paginate_button

*/

/* General Pagination Button Styling */
.custom_paginate_button.page-item {
    display: inline-block; /* Align buttons horizontally */
    margin: 0 5px; /* Spacing between buttons */
    padding: 8px 12px; /* Internal button padding */
    font-size: 14px; /* Button text size */
    font-weight: 500; /* Slightly bold text */
    color: #555; /* Default text color */
    background-color: #f9f9f9; /* Light background for buttons */
    border: 1px solid #ddd; /* Subtle border */
    border-radius: 4px; /* Rounded corners for buttons */
    text-align: center; /* Center text */
    cursor: pointer; /* Pointer cursor for clickable buttons */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transitions */
}

/* Hover Effect */
.custom_paginate_button.page-item:hover {
    background-color: #e6f7ff; /* Light blue on hover */
    color: #007bff; /* Blue text on hover */
    border-color: #007bff; /* Blue border on hover */
}

/* Active Button */
.custom_paginate_button.page-item.active {
    background-color: #007bff; /* Bright blue for active state */
    color: #fff; /* White text for contrast */
    border-color: #007bff; /* Match border color */
    cursor: default; /* Remove pointer on active state */
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.5); /* Subtle shadow for emphasis */
}

/* Disabled State */
.custom_paginate_button.page-item.disabled {
    background-color: #f5f5f5; /* Light gray background */
    color: #aaa; /* Gray text */
    cursor: not-allowed; /* Disabled cursor */
    border-color: #ddd; /* Match border color */
}

/* Focus State */
.custom_paginate_button.page-item:focus {
    outline: none; /* Remove default focus outline */
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5); /* Custom focus ring */
}

    /* Custom Spacing and Styling */
    .header-title {
        margin-bottom: 1.5rem;
        font-size: 2rem;
        font-family: 'Gilroy', sans-serif;
        font-weight: 700; 

        color: #333;
    }
    .dashboard-card {
        margin: 15px 0;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .dashboard-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }
    .dashboard-icon {
        color: #72bb6f;
        font-size: 3rem;
    }
    .dashboard-text {
        color: #969a9e;
        margin-top: 0.75rem;
        font-family: 'Gilroy', sans-serif;
        font-weight: 400; 

    }



    .upgrade-card {
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        transition: box-shadow 0.3s ease, transform 0.3s ease;
    }
    
    .upgrade-card:hover {
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
        transform: translateY(-5px);
    }
    
    .upgrade-icon {
        fill: #007bff; /* Primary color for the icon */
        transition: fill 0.3s ease;
    }
    
    .upgrade-icon:hover {
        fill: #0056b3; /* Darker blue for hover effect */
    }
    
    .form-check-input {
        transform: scale(1.5); /* Increase radio button size */
    }
    .text-center.mt-4 button {
        width: 200px;
    }

    .upgrade-icon {
        fill: white;
    }


    .package-gradient-0 {
        background: linear-gradient(45deg, #2dafe6, #72bb6f);
    }
    .package-gradient-1 {
        background: linear-gradient(45deg, #c9338b, #2dafe6);
    }
    .package-gradient-2 {
        background: linear-gradient(45deg, #fbbc43, #f07f3c);
    }
    .package-gradient-3 {
        background: linear-gradient(45deg, #f07f3c, #c9338b);
    }

    .faults-info {
        background-color: white !important;
        color: #3d3e40; /* Default text color */
        border-color: #ffffff; /* Border to match Bootstrap styling */
    }

.Snavbar-icon {
    color: #72bb6f;
    text-decoration-color: #72bb6f;
    font-size: 1rem;

}


.nav-tab {
    transition: border-color 0.3s ease, color 0.3s ease; /* Smooth transition for better user experience */
    /* border: 2px solid transparent;  */
    background-color: #b9121200;
}

.nav-tab:hover {
    background-color: #4d4d4d5d; /* Light grey background on hover */
    color: #333; /* Slightly darker text color on hover */
}

.nav-tab.active {
    background-color: #ae2081; /* Light grey background on hover */
    color: #3d3e40; 
}

.nav-tab.active:hover {
    background-color: #8181811c; /* Slightly darker background for active item when hovered */
    color: #000; 
}

.nav-item {
    transition: border-color 0.3s ease, color 0.3s ease; /* Smooth transition for better user experience */
    /* border: 2px solid transparent;  */
    /* background-color: #b9121200; */
}

/* .nav-item:hover {
    background-color: #4d4d4d5d; 
    color: #333; 
} */

.nav-item.active {
    background-color: #ae2081; /* Light grey background on hover */
    color: #3d3e40; 
}

/* .nav-item.active:hover {
    background-color: #8181811c; 
    color: #000; 
} */


/*
Side bar
    'classes_sidebar' => 'sidebar-dark-primary elevation-4',
    /Users/vayrin/Documents/GitHub/pm_admin_portal_2/resources/views/vendor/adminlte/partials/sidebar/left-sidebar.blade.php
sidebar-dark-primary elevation-4
*/ 

.menu-sidebar{
    background-color: #343a40; /* Light grey background on hover */

}


/*
    Invoice modal
*/

/* Modal Styling */
.modal-dialog {
    max-width: 800px;
    margin: 30px auto;
}

.modal-header {
    background-color: #72bb6f;
    color: #fff;
    border-bottom: 1px solid #ddd;
    padding: 15px 20px;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-body {
    padding: 20px;
    background-color: #ffffff;
}

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
    outline: 0;
  }

/* Invoice Section Styling */
.invoice-section {
    margin-bottom: 20px;
}

.invoice-section h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.invoice-details {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.invoice-details strong {
    color: #333;
}

.table {
    margin-top: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
}

.table th, .table td {
    text-align: left;
    vertical-align: middle;
    padding: 10px;
    border: 1px solid #ddd;
    font-size: 0.9rem;
}

.table th {
    background-color: #f1f1f1;
    font-weight: bold;
    color: #333;
}

.text-center {
    text-align: center !important;
}

/* Billing and Shipping Address */
.address-section {
    margin-bottom: 15px;
}

.address-section p {
    margin: 0;
    line-height: 1.6;
}

/* Notes Styling */
.invoice-notes {
    margin-top: 15px;
    padding: 10px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    font-size: 0.9rem;
    color: #555;
}

/* Loader */
#invoiceLoader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

/* Error Message */
.text-danger {
    color: #dc3545 !important;
}

/* Custom Scrollbar for Modal */
.modal-body {
    max-height: 70vh;
    overflow-y: auto;
    background-color: #ffffff;
}

/* Button Styling */
.btn-close {
    background: transparent;
    border: none;
    font-size: 1.2rem;
}

/* Payments Section */
#invoicePayments table {
    margin-top: 15px;
}

#invoicePayments p {
    margin: 10px 0;
    font-size: 0.9rem;
    color: #555;
}




.btn-primary {
    background: linear-gradient(to right, #2dafe6, #72bb6f);
    color: white;       /* Text color */
    border: none;       /* No border */
    padding: 0.4em 1.4em;   /* Use relative units for padding */
    font-size: 1rem;    /* Use relative units for font size */
    cursor: pointer;    /* Pointer cursor for buttons */
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    text-align: center;
    /* margin-bottom: 1em; */

}


.btn-primary:hover {
    background: linear-gradient(to right, #72bb6f, #52bbb5);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);

}

.btn-primary:focus {
    outline: none;            /* Removes default outline */
    box-shadow: 0 0 5px #5e9d5b; /* Adds a focus shadow */
}

.btn-primary:active {
    background: #4a7d47; /* Much darker shade for active/pressed state */
    transform: scale(0.93); /* More pronounced shrink effect for pressed state */
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2); /* Creates a pressed effect */
}

.btn-primary:disabled {
    background: #c6e0c4; /* Light grayish-green for disabled state */
    color: #ffffff;      /* Keep text color light */
    cursor: not-allowed; /* Show not-allowed cursor */
    opacity: 0.6;        /* Make it look subdued */
}



.btn-primary-y {
    background: linear-gradient(to right, #fbbc43, #f07f3c);
    color: white;       /* Text color */
    border: none;       /* No border */
    padding: 0.4em 1.4em;   /* Use relative units for padding */
    font-size: 1rem;    /* Use relative units for font size */
    cursor: pointer;    /* Pointer cursor for buttons */
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    text-align: center;
    /* margin-bottom: 1em; */

}


.btn-primary-y:hover {
    background: linear-gradient(to right, #f07f3c, #fbbc43);
    border-color: #fefefe;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    color: #ffffff;}

.btn-primary-y:focus {
    outline: none;            /* Removes default outline */
    box-shadow: 0 0 5px #959d5b; /* Adds a focus shadow */
}

.btn-primary-y:active {
    background: #787d47; /* Much darker shade for active/pressed state */
    transform: scale(0.93); /* More pronounced shrink effect for pressed state */
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2); /* Creates a pressed effect */
}

.btn-primary-y:disabled {
    background: #c6e0c4; /* Light grayish-green for disabled state */
    color: #ffffff;      /* Keep text color light */
    cursor: not-allowed; /* Show not-allowed cursor */
    opacity: 0.6;        /* Make it look subdued */
}


/*
    Pulsing Button
*/


  #start-button {
    position: relative;
    border: 2px solid #ffffff; /* Primary color for border */
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    color: white;
    background-color: #b6c4b8; /* Match button background */
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    outline: none;
  }

  /* Add keyframes for the pulsing effect */
  @keyframes pulse-border {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.627);
    }
    50% {
      box-shadow: 0 0 10px 5px rgba(0, 255, 191, 0.517);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(68, 255, 0, 0);
    }
  }

  /* Apply the animation */
  #start-button {
    animation: pulse-border 1.5s infinite;
  }


  #submit-button {
    position: relative;
    border: 2px solid #ffffff; /* Primary color for border */
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    color: white;
    background-color: #b6c4b8; /* Match button background */
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    outline: none;
  }

  /* Add keyframes for the pulsing effect */
  @keyframes pulse-red {
    0% {
      box-shadow: 0 0 0 0 rgba(255, 60, 0, 0.627);
    }
    50% {
      box-shadow: 0 0 10px 5px rgba(255, 149, 0, 0.517);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(255, 200, 0, 0);
    }
  }

  /* Apply the animation */
  #submit-button {
    animation: pulse-red  1.5s infinite;
  }




.btn-warning {
    background: #fbbc43; /* Main button color */
    color: white;       /* Text color */
    border: none;       /* No border */
    padding: 0.4em 1.4em;   /* Spacing around text */
    font-size: 1rem;    /* Font size */
    cursor: pointer;    /* Pointer cursor on hover */
    border-radius: 0.5em; /* Rounded corners */
    transition: background 0.3s ease, transform 0.2s ease; /* Smooth transitions */
    display: inline-block; /* Inline-block for better layout */
    text-align: center; /* Centered text alignment */
}

/* Hover state */
.btn-warning:hover {
    background: #d89d36; /* Slightly darker shade on hover */
    transform: scale(1.05); /* Slight zoom effect */
}

/* Active (pressed) state */
.btn-warning:active {
    background: #b07b2c; /* Even darker shade for active state */
    transform: scale(0.95); /* Slight shrink effect */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

/* Disabled state */
.btn-warning:disabled {
    background: #f5d7a1; /* Muted lighter shade for disabled state */
    color: #ffffff; /* Muted text color for disabled state */
    cursor: not-allowed; /* Disabled cursor */
    opacity: 0.7; /* Slight transparency */
}

/* Focus state (keyboard navigation) */
.btn-warning:focus {
    outline: 2px solid #fbbc80; /* Focus outline */
    outline-offset: 2px; /* Space between outline and button */
}



.btn-danger {
    background: linear-gradient(to right, #f07f3c, #c9338b);
    color: white;       /* Text color */
    border: none;       /* No border */
    padding: 0.4em 1.4em;   /* Spacing around text */
    font-size: 1rem;    /* Font size */
    cursor: pointer;    /* Pointer cursor on hover */
    border-radius: 0.5em; /* Rounded corners */
    transition: all 0.3s ease, transform 0.2s ease; /* Smooth transitions */
    display: inline-block; /* Inline-block for better layout */
    text-align: center; /* Centered text alignment */
}

/* Hover state */
.btn-danger:hover {
    background: linear-gradient(to right, #c9338b, #f07f3c);
    transform: scale(1.05); /* Slight zoom effect */
}

/* Active (pressed) state */
.btn-danger:active {
    background: #b07b2c; /* Even darker shade for active state */
    transform: scale(0.95); /* Slight shrink effect */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

/* Disabled state */
.btn-danger:disabled {
    background: #f5d7a1; /* Muted lighter shade for disabled state */
    color: #ffffff; /* Muted text color for disabled state */
    cursor: not-allowed; /* Disabled cursor */
    opacity: 0.7; /* Slight transparency */
}

/* Focus state (keyboard navigation) */
.btn-danger:focus {
    outline: 2px solid #fbbc80; /* Focus outline */
    outline-offset: 2px; /* Space between outline and button */
}


.bg-primary-green {
    background-color: #72bb6f;
}

.card-header {
    background-color: #dadada;

}

.banner-header-clear {
    background-color: rgb(255, 255, 255);
    color: #3d3e40;
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    /* border-bottom:  0.7px solid #cdcdcd5a;  */
    /* border-bottom-width: 2px;
    border-bottom: 0 solid rgb(26, 221, 153); */
}

.bg-primary-appt {
    background-color: #c7c6c6;
    color: #3d3e40;
}

.bg-primary-contact {
    background-color: #d4d3d3;
}

.bg-primary-appt-oc {
    background-color: #d74b20;
}

.bg-primary-cal {
    background-color: #fdfdfd;
}

.bg-primary-gradient {
    background: linear-gradient(to right, #fbbc43, #f07f3c);

}

.bg-primary-gradient-1 {
    background: linear-gradient(to right, #fbbc43, #f07f3c);
    background-size: 200% 200%;
    animation: gradient-animation 4s ease infinite;
}

.bg-primary-gradient-2 {
    background: linear-gradient(to right, #c9338b, #2dafe6);
    background-size: 200% 200%;
    animation: gradient-animation 4s ease infinite;
}

.bg-primary-gradient-3 {
    background: linear-gradient(to right, #2dafe6, #72bb6f);
    background-size: 200% 200%;
    animation: gradient-animation 4s ease infinite;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.alert-success {
    color: #609f6f;
    background-color: #d4edda;
    border-color: #c3e6cb;
    padding: 10px; /* Add some padding for better presentation */
    border-radius: 5px; /* Optional: Rounded corners */
    position: relative;
  }
  
  .alert-success::before {
    /* content: "✅ ";  */
    font-size: 1.2em; /* Adjust size if necessary */
    margin-right: 5px; /* Add spacing between emoji and text */
  }

  .alert-danger {
    color: #b53a47;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    padding: 10px; /* Add some padding for better presentation */
    border-radius: 5px; /* Optional: Rounded corners */
    position: relative;
  }

  .alert-danger::before {
    content: " "; /* Add your emoji here */
    font-size: 1.2em; /* Adjust size if necessary */
    margin-right: 5px; /* Add spacing between emoji and text */
  }

  .alert-highlight {
    color: #856404; /* Modern yellow text (rich amber tone) */
    background-color: #fff3cd; /* Soft modern yellow background */
    border-color: #ffeeba; /* Light yellow border */
    padding: 10px; /* Add some padding for better presentation */
    border-radius: 5px; /* Optional: Rounded corners */
    position: relative;
  }
  
  .alert-highlight::before {
    content: ""; /* Remove emoji content */
    display: inline-block;
    font-family: "Font Awesome 5 Free"; /* Ensure the correct font family */
    font-weight: 900; /* Required for solid icons */
    content: "\f071"; /* Unicode for Font Awesome's warning icon */
    font-size: 1.2em; /* Adjust size if necessary */
    margin-right: 5px; /* Add spacing between icon and text */
}

.alert-info {
    color: #0369a1; /* deep sky blue for text */
    background-color: #e0f2fe; /* soft blue background */
    border: 1px solid #bae6fd; /* gentle blue border */
  }

/*
  Secondary button
*/
  
.secondary-button {
    background: transparent;
    color: rgb(225, 213, 155);
    font-weight: 500;
    font-size: 12px;
    padding: 8px 14px;
    border: 1.8px solid rgb(225, 213, 155);
    border-radius: 8px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    margin-left: 1em;
}

.secondary-button:hover {
    background: linear-gradient(to right, #fbbc43, #f07f3c);
    border-color: #fefefe;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    color: #ffffff;
}

.secondary-button:active {
    background: linear-gradient(to right, #d6d6d6, #c8c8c8);
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(1px);
}

.margin-left {
    margin-left: 1em;
}


.secondary-button-nav {
    background: transparent;
    color: rgb(155, 197, 225);
    font-weight: 500;
    font-size: 12px;
    padding: 8px 14px;
    border: 1.8px solid rgb(155, 188, 225);
    border-radius: 8px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.secondary-button-nav:hover {
    background: linear-gradient(to right, #2dafe6, #814997);
    border-color: #fefefe;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    color: #ffffff;
}

.secondary-button-nav:active {
    background: linear-gradient(to right, #d6d6d6, #c8c8c8);
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(1px);
}




.secondary-button-major {
    background: transparent;
    color: rgb(225, 155, 189);
    font-weight: 500;
    font-size: 12px;
    padding: 8px 14px;
    border: 1.8px solid rgb(225, 155, 168);
    border-radius: 8px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    margin-left: 1em;
}

.secondary-button-major:hover {
    background: linear-gradient(to right, #f07f3c, #c9338b);
    border-color: #fefefe;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    color: #ffffff;
}

.secondary-button-major:active {
    background: linear-gradient(to right, #d6d6d6, #c8c8c8);
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(1px);
}



.secondary-button-gn {
    background: transparent;
    color: rgb(155, 225, 172);
    font-weight: 500;
    font-size: 12px;
    padding: 8px 14px;
    border: 1.8px solid rgb(170, 225, 155);
    border-radius: 8px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    /* margin-left: 1em; */
}

.secondary-button-gn:hover {
    background: linear-gradient(to right, #2dafe6, #72bb6f);
    border-color: #fefefe;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    color: #ffffff;
}

.secondary-button-gn:active {
    background: linear-gradient(to right, #d6d6d6, #c8c8c8);
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(1px);
}



/*
    Nav Tabs
*/

.custom-control {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
  }
  
  .custom-control-inline {
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 1rem;
  }
  
  .custom-control-input {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1rem;
    height: 1.25rem;
    opacity: 0;
  }
  
  .custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #72bb6f;
    background-color: #72bb6f;
    box-shadow: none;
  }
  
  .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  }
  
  .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #86ff80;
  }
  
  .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
    color: #fff;
    background-color: #c9ffb3;
    border-color: #c1ffb3;
    box-shadow: none;
  }
  
  .custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
    color: #6c757d;
  }
  
  .custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
    background-color: #e9ecef;
  }
  
  .custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top;
  }
  
  .custom-control-label::before {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: #dee2e6;
    border: #adb5bd solid 1px;
    box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
  }
  
  .custom-control-label::after {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background: 50% / 50% 50% no-repeat;
  }
  
  .custom-checkbox .custom-control-label::before {
    border-radius: 0.25rem;
  }
  
  .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
  }
  
  .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
    border-color: #72bb6f;
    background-color: #72bb6f;
    box-shadow: none;
  }
  
  .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
  }
  
  .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: #72bb6f;
  }
  
  .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
    background-color: #72bb6f;
  }
  
  .custom-radio .custom-control-label::before {
    border-radius: 50%;
  }
  
  .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
  }
  
  .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: #72bb6f;
  }

.custom-switch {
    padding-left: 2.25rem;
  }
  
  .custom-switch .custom-control-label::before {
    left: -2.25rem;
    width: 1.75rem;
    pointer-events: all;
    border-radius: 0.5rem;
  }
  
  .custom-switch .custom-control-label::after {
    top: calc(0.25rem + 2px);
    left: calc(-2.25rem + 2px);
    width: calc(1rem - 4px);
    height: calc(1rem - 4px);
    background-color: #aebdad;
    border-radius: 0.5rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
    transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
  }
  
  @media (prefers-reduced-motion: reduce) {
    .custom-switch .custom-control-label::after {
      transition: none;
    }
  }
  
  .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
    background-color: #dee2e6;
    -webkit-transform: translateX(0.75rem);
    transform: translateX(0.75rem);
  }
  
  .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: #72bb6f;
  }
  

  /*
    Nav Links 
  */

  .nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-link {
    color: #495057; /* Default text color for nav tabs */
    margin-bottom: -1px;
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }
  
  .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
    color: #618f60; /* Optional: Text color on hover */
    background-color: #f3f3f3; 
    border-color: #e9ecef #e9ecef #dee2e6; 
  }
  
  .nav-tabs .nav-link.active,
  .nav-tabs .nav-item.show .nav-link {
    color: #72bb6f; /* Selected tab color */
    border-color: #72bb6f #72bb6f #fff;
    background-color: #fff;
    font-weight: bold;
  }

.nav-tabs .nav-link.disabled {
  color: #3d3e40;
  background-color: #fff;
  border-color: transparent;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #72bb6f;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}

/* .tab-pane{

} */

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

/*
    dataTables_paginate
*/
/* Wrapper for pagination controls */
div.dataTables_wrapper div.dataTables_paginate {
    margin: 0; /* Ensure no margin for consistent spacing */
    white-space: nowrap; /* Prevent wrapping */
    text-align: right; /* Align pagination to the right */
    display: flex; /* Use flexbox for better alignment control */
    justify-content: flex-end; /* Ensure alignment to the right */
    gap: 10px; /* Add spacing between buttons/links */
  }
  
  /* Style for the pagination links */
  div.dataTables_wrapper div.dataTables_paginate a {
    color: #72bb6f; /* Primary blue for links */
    text-decoration: none; /* Remove underline */
    background-color: transparent; /* Ensure no background */
    padding: 5px 10px; /* Add padding for better clickability */
    border: 1px solid #dee2e6; /* Add a border for modern styling */
    border-radius: 4px; /* Rounded corners for a modern look */
    font-size: 14px; /* Adjust font size for readability */
    transition: all 0.2s ease-in-out; /* Add a hover animation */
    cursor: pointer; /* Ensure pointer cursor on hover */
  }
  
  /* Hover effect for links */
  div.dataTables_wrapper div.dataTables_paginate a:hover {
    background-color: #f8f9fa; /* Light grey background on hover */
    border-color: #cfd4da; /* Slightly darker border on hover */
    color: #72bb6f; /* Darker blue text on hover */
  }
  
  /* Disabled state for previous/next buttons */
  div.dataTables_wrapper div.dataTables_paginate a.disabled {
    color: #6c757d; /* Muted grey for disabled links */
    background-color: #e9ecef; /* Light grey background for disabled state */
    border-color: #dee2e6; /* Maintain border consistency */
    cursor: not-allowed; /* Show not-allowed cursor */
    pointer-events: none; /* Disable interactions */
  }
  
  /* Active state for the current page */
  div.dataTables_wrapper div.dataTables_paginate a.active {
    color: #fff; /* White text for active page */
    background-color: #72bb6f; /* Primary blue background for active page */
    border-color: #72bb6f; /* Match border color */
    font-weight: bold; /* Highlight active page */
    cursor: default; /* Default cursor for the active page */
  }


  /*
    Stat cards on dashboard
  */

  .header-title {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #fff;
}
.dashboard-card {
    margin: 15px 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.dashboard-icon {
    color: #72bb6f;
    font-size: 3rem;
}
.dashboard-text {
    color: #969a9e;
    margin-top: 0.75rem;
}
.stats-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.stats-card {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.stats-icon {
    font-size: 2.5rem;
    color: #72bb6f;
}
.stats-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}
.stats-label {
    font-size: 1rem;
    color: #969a9e;
}


/* minimal style */

/* Table Container */
.table-container {
    overflow-x: auto;
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0px;
    margin-bottom: 24px;
  }
  
  /* Table Base */
  table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    color: #1f2937;
  }
  
  /* Table Headers */
  thead {
    /*background-color: #f9fafb;*/
    border-bottom: 1px solid #e5e7eb;
  }
  
  th {
    text-align: left;
    padding: 12px;
    font-weight: 600;
    color: #374151;
    font-size: 13px;
  }
  
  /* Table Rows */
  td {
    padding: 12px;
    border-bottom: 1px solid #f3f4f6;
    color: #4b5563;
  }
  
  /* Zebra Stripe */
  tbody tr:nth-child(even) {
    background-color: #ffffff;
  }
  
  /* Hover Effect */
  tbody tr:hover {
    background-color: #f3f4f6;
  }
  
  /* Optional Compact Mode */
  .table-compact td,
  .table-compact th {
    padding: 8px;
  }

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25em 0.6em;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    border-radius: 0.375rem;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    background-color: #f4f4f5;
    color: #4b5563;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  
  @media (prefers-reduced-motion: reduce) {
    .badge {
      transition: none;
    }
  }
  
  .badge:empty {
    display: none;
  }
  
  a.badge:hover,
  a.badge:focus {
    text-decoration: none;
    background-color: #e4e4e7;
    color: #1f2937;
  }
  
  /* Pill style */
  .badge-pill {
    padding-left: 0.8em;
    padding-right: 0.8em;
    border-radius: 9999px;
  }
  
  /* Variants */
  .badge-primary {
    background-color: #e0f2fe;  /* light sky blue */
    color: #075985;
  }
  
  .badge-secondary {
    background-color: #f1f5f9;  /* soft slate */
    color: #334155;
  }
  
  .badge-success {
    background-color: #d1fae5;  /* soft green */
    color: #065f46;
  }
  
  .badge-info {
    background-color: #cffafe;  /* cyan-light */
    color: #0e7490;
  }
  
  .badge-warning {
    background-color: #fef9c3;  /* soft yellow */
    color: #92400e;
  }
  
  .badge-danger {
    background-color: #fee2e2;  /* soft red */
    color: #991b1b;
  }
  
  .badge-light {
    background-color: #f8fafc;  /* ultra-light grey */
    color: #475569;
  }
  
  .badge-dark {
    background-color: #374151;
    color: #f9fafb;
  }
  
  /* Optional outline variant */
  .badge-outline {
    background-color: transparent;
    border: 1px solid currentColor;
  }
  
  /* Use this for smaller badges */
  .badge-sm {
    font-size: 10px;
    padding: 0.15em 0.4em;
  }
  
  /* Use this for larger emphasis */
  .badge-lg {
    font-size: 13px;
    font-weight: 600;
    padding: 0.35em 0.75em;
  }

  /* Complete Btn */
  .btn-success {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #d1fae5; /* soft green background */
    color: #047857; /* dark green text/icon */
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    box-shadow: none;
  }
  
  .btn-success:hover {
    background-color: #a7f3d0; /* slightly deeper green */
    color: #065f46;
    transform: scale(1.05);
  }
  
  .btn-success:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.4);
  }

  /* Info btn */
  .btn-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #e0f2fe; /* soft blue background */
    color: #0369a1; /* deep blue text/icon */
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    box-shadow: none;
  }
  
  .btn-info:hover {
    background-color: #bae6fd; /* slightly deeper blue */
    color: #075985;
    transform: scale(1.05);
  }
  
  .btn-info:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.4);
  }

  /* Secondary Btn */
  .btn-secondary-c {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #e5e7eb; /* light neutral grey */
    color: #374151; /* dark slate text/icon */
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    box-shadow: none;
  }
  
  .btn-secondary-c:hover {
    background-color: #d1d5db; /* slightly deeper neutral */
    color: #111827;
    transform: scale(1.05);
  }
  
  .btn-secondary-c:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(107, 114, 128, 0.3);
  }
  
  /* Disabled State */
  .btn-secondary-c:disabled,
  .btn-secondary-c.disabled {
    background-color: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    opacity: 0.6;
  }
  
  /* Active State */
  .btn-secondary-c:not(:disabled):active,
  .btn-secondary-c.active,
  .show > .btn-secondary-c.dropdown-toggle {
    background-color: #d1d5db;
    color: #1f2937;
    transform: scale(0.97);
  }
  
  .btn-secondary-c:not(:disabled):active:focus,
  .btn-secondary-c.active:focus,
  .show > .btn-secondary-c.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(107, 114, 128, 0.4);
  }

/* sm btn  */
.btn-sm,
.btn-group-sm > .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  /* font-size: 0.875rem; */
  line-height: 1;
  border-radius: 50%;
  padding: 0; /* override rectangular padding */
}

/*bg*/
.bg-soft-green { background-color: #d1fae5; color: #065f46; }
.bg-soft-red { background-color: #fee2e2; color: #991b1b; }
.bg-soft-yellow { background-color: #fef9c3; color: #c57747; }
.bg-soft-blue { background-color: #e0f2fe; color: #0369a1; }

.badge-paid {
    background-color: #d1fae5;
    color: #065f46;
  }
  
  .badge-progress {
    background-color: #cffafe;
    color: #0e7490;
  }
  
  .badge-overdue {
    background-color: #fee2e2;
    color: #991b1b;
  }
  
  .badge-pending {
    background-color: #fef9c3;
    color: #92400e;
  }

.bg-success {
    background-color: #d1fae5;  /* soft green */
    color: #065f46;
  }
  
  .bg-danger {
    background-color: #fee2e2;  /* soft red */
    color: #991b1b;
  }
  
  .bg-warning {
    background-color: #fef9c3;  /* soft yellow */
    color: #92400e;
  }
  
  .bg-purple {
    background-color: #ede9fe;  /* soft violet */
    color: #6b21a8;
  }

