.btn-primary {
    background-color: #1E3A8A !important;
    border-color: #1E3A8A !important;
    color: #fff !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background-color: #264bc7 !important;
    border-color: #264bc7 !important;
    color: #fff;
}

/* Elegant Card Styling */
.elegant-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border-radius: 0.5rem;
}

.elegant-card .card-body {
    padding: 1.5rem;
}

.elegant-card .card-title {
    color: #1E3A8A;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.elegant-card .card-text {
    color: #6c757d;
    margin-bottom: 0;
}

.elegant-card .btn {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.elegant-card .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease-in-out;
}

/* Icon styling for elegant cards */
.elegant-card .icon-large {
    font-size: 2.5rem;
    color: #1E3A8A;
}

/* Table styling for elegant cards */
.elegant-table-card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border-radius: 0.5rem;
}

.elegant-table-card .card-header {
    background: #1E3A8A;
    color: white;
    border: none;
    border-radius: 0.5rem 0.5rem 0 0;
    padding: 1rem 1.5rem;
}

.elegant-table-card .card-header h5 {
    margin-bottom: 0;
    font-weight: 600;
}

.elegant-table-card .table {
    margin-bottom: 0;
}

.elegant-table-card .table thead th {
    border: none;
    padding: 0.75rem 1.5rem;
    background-color: #f8f9fa;
    color: #495057;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.elegant-table-card .table tbody td {
    border: none;
    padding: 1rem 1.5rem;
    vertical-align: middle;
}

.elegant-table-card .table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Status badges */
.status-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
}

.status-badge.approved {
    background-color: #d1e7dd;
    color: #0f5132;
}

.status-badge.pending {
    background-color: #fff3cd;
    color: #664d03;
}

/* Avatar styling */
.avatar-circle {
    width: 40px;
    height: 40px;
    background-color: #1E3A8A;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

/* Action buttons */
.action-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.action-buttons .btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 0.375rem;
}

.action-buttons .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease-in-out;
}

/* Elegant Hamburger Button Styling */
.hamburger-btn {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    padding: 6px;
    z-index: 1050;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hamburger-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.hamburger-btn span {
    width: 18px;
    height: 2px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform-origin: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hamburger-btn:hover span {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Elegant hamburger animation when sidebar is collapsed */
.sidebar-collapsed .hamburger-btn span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.sidebar-collapsed .hamburger-btn span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.sidebar-collapsed .hamburger-btn span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Active state for hamburger button */
.hamburger-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Hide the default file input but keep it focusable */
.custom-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    opacity: 0;
}

/* Custom styling for the upload button */
.custom-upload-label {
    display: inline-flex;
    align-items: center;
    background-color: #1E3A8A; /* Primary color */
    color: white;
    border-radius: 30px;
    padding: 10px 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
}

/* Hover Effect */
.custom-upload-label:hover {
    background-color: white;
    color: #1E3A8A;
    border: 2px solid #1E3A8A;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

/* Icon styling */
.custom-upload-label i {
    margin-right: 8px;
}

/* Display the file name when selected */
.custom-file-name {
    font-size: 14px;
    margin-left: 10px;
    font-weight: 500;
    color: #555;
}

/* Modern Attachments Section Styles */
.attachments-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.attachment-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.attachment-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.attachment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1E3A8A, #3B82F6);
}

.attachment-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.attachment-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.attachment-info {
    flex: 1;
}

.attachment-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
}

.attachment-description {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

.attachment-status {
    flex-shrink: 0;
}

.status-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.required {
    background-color: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.status-badge.optional {
    background-color: #f0f9ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
}

.attachment-upload {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modern-upload-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    max-width: 160px;
    box-shadow: 0 2px 4px rgba(30, 58, 138, 0.2);
    outline: none;
}

.modern-upload-btn:focus {
    outline: 2px solid #3B82F6;
    outline-offset: 2px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.modern-upload-btn:hover {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    color: white;
}

.modern-upload-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(30, 58, 138, 0.2);
}

.modern-upload-btn i {
    font-size: 0.9rem;
}

.file-info {
    display: none;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.file-info.file-selected {
    display: block;
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.file-name {
    display: block;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 0.25rem;
    word-break: break-all;
}

.file-size {
    display: block;
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 400;
}

/* Required field styling */
.status-badge.required {
    background-color: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
    position: relative;
}

.status-badge.required::after {
    content: ' *';
    color: #dc2626;
    font-weight: bold;
}

/* Modern Section Headers */
.modern-section-header {
    background: linear-gradient(90deg, #0F766E, #2DD4BF);
    border-radius: 12px;
    padding: 0;
    margin: 1rem 0 0.75rem 0;
    box-shadow: 0 4px 20px rgba(15, 118, 110, 0.15);
    position: relative;
    overflow: hidden;
    min-height: 45px;
}

.modern-section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    pointer-events: none;
}

.section-header-content {
    display: flex;
    align-items: center;
    padding: 0.6rem 1rem;
    position: relative;
    z-index: 1;
}

.section-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-icon i {
    font-size: 1rem;
    color: white;
}

.section-info {
    flex: 1;
}

.section-title {
    color: white;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    margin: 0;
    font-weight: 400;
    line-height: 1.4;
}

.section-number {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Section Headers */
@media (max-width: 768px) {
    .section-header-content {
        padding: 0.75rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .section-icon {
        margin-right: 0;
        margin-bottom: 0.25rem;
    }
    
    .section-info {
        order: 2;
    }
    
    .section-number {
        order: 3;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .modern-section-header {
        margin: 0.75rem 0 0.5rem 0;
    }
    
    .section-header-content {
        padding: 0.75rem;
    }
    
    .section-icon {
        width: 45px;
        height: 45px;
    }
    
    .section-icon i {
        font-size: 1.25rem;
    }
    
    .section-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .attachment-header {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .attachment-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .attachment-card {
        padding: 1rem;
    }
    
    .modern-upload-btn {
        width: 100%;
        max-width: none;
    }
}


/* Modal dialog customization */
.modal-dialog {
    max-width: 70%; /* Maximum width to prevent excessive growth */
    min-width: 50%; /* Minimum width to ensure at least 60% width */
    margin: auto; /* Horizontally center */
    margin: 2.75rem auto; /* Horizontally centered and default Bootstrap vertical spacing */
}

.custom-blue-box-normal {
    border: 3px solid #0dcaf0;  /* Cyan border */
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);  /* Shadow effect */
    padding: 10px;  /* Spacing inside the box */
    font-size: 14px;  /* Font size */
}

.custom-blue-box-medium {
    border: 3px solid #0dcaf0;  /* Cyan border */
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);  /* Shadow effect */
    padding: 10px;  /* Spacing inside the box */
    font-size: 16px;  /* Font size */
}

.custom-blue-box-large {
    border: 3px solid #0dcaf0;  /* Cyan border */
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);  /* Shadow effect */
    padding: 10px;  /* Spacing inside the box */
    font-size: 18px;  /* Font size */
}




/* Vertically center the modal */
.modal-dialog-centered {
    display: flex;
    align-items: center; /* Vertically center content */
    justify-content: center; /* Ensure horizontal centering */
}

/* Modal Border with Shadow */
.modal-content {
    
    border: 2px solid darkgray; /* Dark gray border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5); /* Shadow effect */
}

/* Modal Header */
.modal-header {
    background-color: #1E3A8A; /* Dark blue header background */
    color: white; /* Text color for header */
    border-bottom: 1px solid darkgray;
}

/* Modal Footer */
.modal-footer {
    background-color: #f8f9fa; /* Bootstrap light gray */; /* Light blue footer background */
    border-top: 2px solid darkgray; /* Optional: Border above footer */
}

/* Modal Title */
.modal-header .modal-title {
    font-weight: bold; /* Bold header title */
}

/* Optional: Close Button in Header */
.modal-header .btn-close {
    color: white; /* Close button color */
    opacity: 1; /* Ensure visibility */
}

hr {
    border: none; /* Removes default border */
    height: 3px; /* Sets thickness */
    background-color: #007bff; /* Bootstrap Primary Color */
    margin: 20px 0; /* Vertical spacing */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow for emphasis */
}

.card-header {
    color: white; /* White text color */
    border-radius: 5px !important; /* Rounded edges */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Subtle shadow effect */
    padding: 10px; /* Increase space between text and edge */
}

.blue-card-header {
    background: linear-gradient(to right,  #1E3A8A, #668df8); /* Gradient from white to dark grey */
    color: white; /* White text color */
    border-radius: 5px !important; /* Rounded edges */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Subtle shadow effect */
    padding: 10px; /* Increase space between text and edge */
}

.gray-subheader {
    background: linear-gradient(to right, #818181, #dadadb); /* lighter blue gradient */
    color: #fff;
    border-radius: 4px;
    padding: 6px 12px;
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.3);
}

.gray-subheader-tab {
    position: relative;
    height: 40px;
    margin-top: 20px;
    margin-bottom: -1px;
    font-weight: bold;
    color: rgb(8, 8, 8);
    display: flex;
    align-items: center;
    text-shadow: 1px 1px 2px rgba(245, 241, 241, 0.3);
    z-index: 1;
    padding-left: 0; /* ensure tab stays fixed */
}

.gray-subheader-tab span {
    padding-left: 15px; /* ⬅️ controls text offset */
    z-index: 2; /* ensure it’s above ::before */
}

.gray-subheader-tab::before {
    content: '';
    position: absolute;
    width: var(--tab-width, 300px);
    height: 100%;
    background: linear-gradient(to right, 	#99c2c2, #d4dcb3);
    border: 1px solid #ccc;
    border-bottom: none;
    border-radius: 5px 5px 0 0;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    z-index: -1;
}

.gray-subheader-tab::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    margin-bottom: -2px; /* so the border sits seamlessly on top of next content */
    background-color: #dadadb;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    z-index: -2;
}

.faint-grey-box {
    background-color: #f7f7f7; /* soft grey */
    padding: 16px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.faint-grey-box input,
.faint-grey-box textarea,
.faint-grey-box select {
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    background-color: #fff !important;
    padding: 0.5rem 1rem; /* top-bottom: 0.5rem, left-right: 1rem */
}

/* Add shadow effect to radio buttons and checkboxes inside faint-grey-box */
.faint-grey-box input[type="radio"],
.faint-grey-box input[type="checkbox"] {
    appearance: auto;
    -webkit-appearance: auto;
    -moz-appearance: auto;
}

.white-box {
    background-color: #ffffff; /* white */
    padding: 16px;
    border-radius: 6px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.otp-container {
    display: flex;
    justify-content: space-between;
    max-width: 200px;
    margin: 5px auto;
  }

  .otp-container input {
    width: 60px;
    height: 80px;
    font-size: 16px;
    text-align: left;
    border: 2px solid #007bff;
    border-radius: 5px;
  }

  .login-container {
    display: flex;
    max-width: 1000px;
    margin: 60px auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* optional: keeps border radius on children */
}

.login-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 10px 0 0 10px;
    height: auto;       /* remove fixed height */
    min-height: 100%;   /* ensure it stretches with content */
    width: 300px;
    display: flex;
}

.login-form {
    flex: 1;
    padding: 30px;
}

.login-header {
    text-align: center;
    margin-bottom: 20px;
}
.login-header h3 {
    margin-bottom: 10px;
}
.form-control {
    height: 45px;
}


.footer-links {
    text-align: center;
    margin-top: 20px;
}
.footer-links a {
    color: #007bff;
    text-decoration: none;
}
.footer-links a:hover {
    text-decoration: underline;
}
.town-logo {
    max-width: 100px;
    margin-bottom: 15px;
}
       /* Hide the default checkbox */

    .alert {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1050; /* Ensure it appears above other content */
        width: auto; /* Adjust width as needed */
        max-width: 90%; /* Ensure it doesn't overflow on smaller screens */
        background-color: black; /* Set background color to black */
        color: white; /* Set text color to white */
    }
        .scrollable-div {
            max-height: 600px; /* Adjust as needed */
            overflow-y: scroll;
            position: relative;
            scrollbar-width: thin; /* For Firefox */
            scrollbar-color: #cbcbcb #f1f1f1; /* Thumb and track colors */
        }

        /* Custom Scrollbar for Webkit (Chrome, Safari, Edge) */
        .scrollable-div::-webkit-scrollbar {
            width: 10px;
        }

        .scrollable-div::-webkit-scrollbar-track {
            background: #f1f1f1; /* Track color */
            border-radius: 10px;
        }

        .scrollable-div::-webkit-scrollbar-thumb {
            background-color: #007bff; /* Thumb color */
            border-radius: 10px;
            border: 2px solid #f1f1f1; /* Border around the thumb */
        }

        .scrollable-div::-webkit-scrollbar-thumb:hover {
            background-color: #0056b3; /* Thumb hover color */
        }






        .nav-link {
            text-transform: none; /* Prevent text from being uppercase */
        }
        .alert-custom-warning {
            background-color: #f9f0d4; /* Light background */
            border: 1px solid var(--bs-warning); /* Border to match the warning color */
            padding: 5px; /* Add padding for better visual appeal */
            border-radius: 5px; /* Optional: Slight border radius */
            margin-top: 10px; /* Space above the division */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow around the div */
        }

        .alert-custom-warning i {
            color: var(--bs-warning); /* Warning color for the icon */
            font-size: 1.5rem; /* Icon size */
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Shadow for the icon */
        }

        .alert-custom-warning div {
            color: #333333; /* Very dark gray text */
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Shadow for the text */
        }

        .alert-custom-danger {
            background-color: #f3d4d4; /* Light background */
            border: 1px solid var(--bs-danger); /* Border to match the warning color */
            padding: 5px; /* Add padding for better visual appeal */
            border-radius: 5px; /* Optional: Slight border radius */
            margin-top: 10px; /* Space above the division */

            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow around the div */
        }

        .alert-custom-danger i {
            color:  var(--bs-danger); /* Warning color for the icon */
            font-size: 1.5rem; /* Icon size */
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Shadow for the icon */
        }

        .alert-custom-danger div {
            color: #333333; /* Very dark gray text */
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Shadow for the text */
        }   

        .alert-custom-success {
            background-color: #d1f2d1; /* Light background */
            border: 1px solid var(--bs-success); /* Border to match the warning color */
            padding: 5px; /* Add padding for better visual appeal */
            border-radius: 5px; /* Optional: Slight border radius */
            margin-top: 10px; /* Space above the division */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow around the div */

        }

        .alert-custom-success i {
            color:  var(--bs-success); /* Warning color for the icon */
            font-size: 1.5rem; /* Icon size */
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Shadow for the icon */
        }

        .alert-custom-success div {
            color: #333333; /* Very dark gray text */
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Shadow for the text */
        }

        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 20 auto;
            padding: 40px 0;
        }

        /* Vertical line */
        .timeline::after {
            content: '';
            position: absolute;
            width: 4px;
            background-color: #d4d4d4;
            top: 0;
            bottom: 0;
            left: 20px;
            margin-left: -2px;
            z-index: 1;
        }

        /* Timeline item container */
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 100%;
            z-index: 2;
        }

        .alert-custom {
            background-color: #F5F5F5; /* Light background */
            border: 1px solid #FF8C00; /* Border to match the warning color */
            padding: 15px; /* Add padding for better visual appeal */
            border-radius: 5px; /* Optional: Slight border radius */
            margin-top: 20px; /* Space above the division */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow around the div */
        }

        .alert-custom i {
            color: #FF8C00; /* Warning color for the icon */
            font-size: 1.5rem; /* Icon size */
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Shadow for the icon */
        }

        .alert-custom div {
            color: #333333; /* Very dark gray text */
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Shadow for the text */
        }

        /* Cross or Tick */
        .timeline-item::before {
            content: attr(data-status-symbol); /* Display the symbol based on status */
            font-size: 12px;
            font-weight: bold;
            color: #fff;
            position: absolute;
            top: 10px;
            left: 8px;
            background-color: #007bff;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            text-align: center;
            line-height: 25px;
            border: 2px solid #fff;
            z-index: 3;
        }

        /* Cross color (for incomplete data) with 3D effect using Bootstrap's --bs-danger variable */
        .timeline-item[data-status="incomplete"]::before {
            content: '✖'; /* Cross symbol */
            background-color: var(--bs-danger); /* Bootstrap Danger Color */
            box-shadow: 
                0 4px 8px rgba(0, 0, 0, 0.3), /* Outer shadow for depth */
                inset 0 2px 4px rgba(255, 255, 255, 0.2);  /* Inner light for 3D effect */
            color: #fff;
            border-radius: 50%; /* Make it circular */
        }

        /* Tick color (for complete data) with 3D effect using Bootstrap's --bs-success variable */
        .timeline-item[data-status="complete"]::before {
            content: '✔'; /* Tick symbol */
            background-color: var(--bs-success); /* Bootstrap Success Color */
            box-shadow: 
                0 4px 8px rgba(0, 0, 0, 0.3), /* Outer shadow for depth */
                inset 0 2px 4px rgba(255, 255, 255, 0.2);  /* Inner light for 3D effect */
            color: #fff;
            border-radius: 50%; /* Make it circular */
        }


        /* Category description */
        .timeline-item h3 {
            margin: 0;
            font-size: 14px;
            color: #333;
            font-weight: bold;
        }

        /* Items under the category */
        .timeline-item ul {
            margin-top: 5px;
            padding-left: 20px;
        }

        .timeline-item ul li {
            margin-bottom: 5px;
            color: #555;
        }
        
/* Elegant Input Field Styling - Inspired by info-value */
        input[type="text"],
        input[type="email"],
        input[type="password"],
        input[type="number"],
input[type="date"],
        textarea,
        select {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #212529;
    padding: 0.25rem 1rem;
    border-radius: 0.375rem;
    border-left: 4px solid #1E3A8A;
            outline: none;
    transition: all 0.2s ease;
    font-size: 1rem;
    font-weight: 400;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="password"]:focus,
        input[type="number"]:focus,
input[type="date"]:focus,
        textarea:focus,
        select:focus {
    background-color: #ffffff;
    border-color: #1E3A8A;
    border-left-color: #1E3A8A;
    box-shadow: 0 0 0 2px rgba(30, 58, 138, 0.1);
    color: #212529;
}

        input[type="text"]:hover,
        input[type="email"]:hover,
        input[type="password"]:hover,
        input[type="number"]:hover,
        input[type="date"]:hover,
        textarea:hover,
        select:hover {
            border-color: #9ca3af;
            background-color: #ffffff;
        }

        /* Placeholder styling */
        input::placeholder,
        textarea::placeholder {
            color: #9ca3af;
            font-style: italic;
        }

        /* Label styling */
        label {
            font-weight: 600;
            color: #374151;
            margin-bottom: 0.5rem;
            display: block;
        }

        /* Small text styling */
        .form-text {
            color: #6b7280;
            font-size: 0.875rem;
            margin-top: 0.25rem;
        }

        /* Add some spacing around inputs for better visibility */
    .form-control {
        height: auto; /* Let the padding control the height */
        min-height: 48px; /* Ensure minimum height for touch targets */
    }

/* Ensure select elements with form-control class get our elegant styling */
select.form-control {
    background-color: #f8f9fa !important;
    border: 1px solid #dee2e6 !important;
    color: #212529 !important;
    padding: 0.25rem 1rem !important;
    border-radius: 0.375rem !important;
    border-left: 4px solid #1E3A8A !important;
    outline: none !important;
    transition: all 0.2s ease !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
}

select.form-control:focus {
    background-color: #ffffff !important;
    border-color: #1E3A8A !important;
    border-left-color: #1E3A8A !important;
    box-shadow: 0 0 0 2px rgba(30, 58, 138, 0.1) !important;
    color: #212529 !important;
}

    select.form-control:hover {
        border-color: #9ca3af !important;
        background-color: #ffffff !important;
    }
    .white-background-div {
      background-color: white;
      padding: 20px; /* Optional: Adds padding for better content spacing */
      border-radius: 8px; /* Optional: Rounds the corners */
    }
    .tab-content {
        background-color: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1); /* Optional shadow for styling */
    }
.accordion-button {
        background-color: #fff;
        color: #333;
        font-weight: 600;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
        border-radius: 10px !important;
        transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
    }

    .accordion-button:hover {
        background-color: #f5f5f5;
    }

    /* Accordion button when active (mimics Angular Material's primary color fill) */
    .accordion-button:not(.collapsed) {
        background-color: var(--bs-primary); /* Use Bootstrap primary color */
        color: white;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    }

    /* Accordion body with padding and soft background */
    .accordion-body {
        background-color: #f3f3f3;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    }

    .accordion-item {
        border: none;
        margin-bottom: 15px;
    }

    .accordion-header {
        margin-bottom: 5px;
    }

    .accordion-button:focus {
        box-shadow: none;
    }

        /* Ensure the body and html fill the height */
        html, body {
            height: 100%;
            margin: 0;
            display: flex;
            flex-direction: column;
            font-size: 13px;
        }

        /* Wrapper to fill the viewport height */
        .wrapper {
            display: flex;
            flex-direction: row;
            flex-grow: 1;
            overflow: hidden;
        }

        /* Sidebar styles with shades of blue */
        .sidebar {
            width: 260px;
            min-width: 260px;
            background-color: #243c6c; /* Medium dark blue */
            color: white;
            display: flex;
            flex-direction: column;
            overflow-y: auto;
            overflow-x: hidden;
            transition: transform 0.3s ease, width 0.3s ease;
        }

        /* Collapsed sidebar for large screens */
        .sidebar-collapsed {
            transform: translateX(-260px); /* Hide the sidebar by moving it left */
            width: 0;
        }

        .sidebar-header {
            background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 10px 16px;
            text-align: center;
            font-size: 12px;
            font-weight: bold;
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 50px; /* Match main header height */
            display: flex;
            align-items: center;
            justify-content: center;
            border-bottom: 2px solid #cbd5e1;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            position: relative;
        }

        .sidebar-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 20%;
            right: 20%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #1E3A8A, transparent);
        }

        .sidebar-header img {
            max-height: 48px;
            margin-right: 10px;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
            border-radius: 4px;
            padding: 2px;
            background: rgba(255, 255, 255, 0.8);
        }

        .sidebar-header h4 {
            margin: 0;
            font-size: 16px;
            font-weight: 600;
            color: #1e293b;
            letter-spacing: 0.3px;
            text-shadow: none;
        }


        /* Sidebar search bar styles */
        .search-bar {
            padding: 10px;
            background-color: #2b4d7b; /* Slightly lighter blue */
        }

        .search-bar input {
            width: 100%;
            padding: 5px;
            border: none;
            border-radius: 4px;
            background-color: #3b5b8d; /* Even lighter blue */
            color: white;
        }

        /* Navigation links styles */
        .sidebar .nav-link {
            color: #cfd8dc;
            font-weight: 500;
            display: flex;
            align-items: center;
            padding: 10px 15px;
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .sidebar .nav-link:hover {
            color: #ffffff;
            background-color: #1E3A8A; /* Deep blue on hover */
        }

        .sidebar .nav-link.active {
            background-color: #1E3A8A; /* Active background color */
            color: #ffffff;
        }

        .sidebar .nav-link i {
            margin-right: 10px;
        }

        /* Collapsible submenu styling */
        .collapse-inner {
            padding-left: 20px;
        }

        .collapse-inner .nav-link {
            padding-left: 10px;
        }

        /* Expand/Collapse caret styling */
        .toggle-icon {
            margin-left: auto;
            transition: transform 0.3s ease;
        }

        .collapsed .toggle-icon {
            transform: rotate(-90deg);
        }

        /* Social media section */
        .social-media {
            display: flex;
            justify-content: center;
            margin-top: auto;
            padding: 10px;
            background-color: #2b4d7b; /* Slightly lighter blue */
        }

        .social-media a {
            color: #cfd8dc;
            margin: 0 5px;
        }

        .social-media a:hover {
            color: #ffffff;
        }

        /* Main content container to fill remaining space */
        .main-content-container {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transition: margin-left 0.3s ease, width 0.3s ease;
        }

        /* When the sidebar is collapsed, make the main content full-width */
        .main-content-container.full-width {
            margin-left: -260px;
            width: 100%;
        }

        .main-header {
            background-color: #fabe94; /* Dark Orange */
            color: white;
            padding: 10px 10px 10px 50px; /* Add left padding to make space for the hamburger button */
            text-align: center;
            font-size: 20px;
            font-weight: bold;
            position: relative;
            height: 50px; /* Set the height to match the sidebar header */
            display: flex;
            align-items: center; /* Vertically center the content */
            box-shadow: 0 10px 30px 0 rgba(30, 58, 138, 0.35), 0 0 30px 10px #4FA3D1;
            /* Big shadow and blue glow at the bottom */
        }




        /* Main content area */
        .main-content {
            flex-grow: 1;
            padding: 20px;
            overflow-y: auto;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        /* Footer within the scrollable main content */
        .footer {
            background-color: #f8f9fa;
            padding: 10px;
            text-align: center;
            margin-top: auto;
            width: 100%;
        }

        /* Custom scrollbars */
        .sidebar::-webkit-scrollbar, .main-content::-webkit-scrollbar {
            width: 8px;
        }

        .sidebar::-webkit-scrollbar-thumb, .main-content::-webkit-scrollbar-thumb {
            background-color: #888;
            border-radius: 4px;
        }

        .sidebar::-webkit-scrollbar-thumb:hover, .main-content::-webkit-scrollbar-thumb:hover {
            background-color: #555;
        }

        .sidebar::-webkit-scrollbar-track, .main-content::-webkit-scrollbar-track {
            background-color: #f1f1f1;
        }

        /* Firefox */
        .sidebar, .main-content {
            scrollbar-width: thin;
            scrollbar-color: #888 #f1f1f1;
        }

        /* Media queries for responsiveness */
        @media (max-width: 768px) {
            .sidebar {
                position: absolute; /* Overlay the sidebar on small screens */
                z-index: 1000;
                transform: translateX(-260px); /* Hide sidebar by default on mobile */
                transition: transform 0.3s ease;
            }

            .sidebar-collapsed {
                transform: translateX(-260px);
            }

            .sidebar.show-sidebar {
                transform: translateX(0);
            }

            .main-content-container {
                margin-left: 0 !important;
                width: 100% !important;
            }

            .main-content-container.full-width {
                margin-left: 0;
                width: 100%;
            }
        }

        /* Remove bullet points from the main menu and submenu */
        .main-menu,
        .submenu {
            list-style-type: none; /* Removes bullets */
            padding-left: 0; /* Removes default padding */
            margin-left: 0; /* Removes default margin */
        }

        /* Optional: Style the links to align nicely */
        .main-menu .nav-link,
        .submenu .nav-link {
            padding-left: 10px; /* Add some padding to align the text */
            padding-right: 2px; /* Removes default padding */
        }

        .dropdown .btn {
            border-radius: 30%; /* Makes the button round */
            width: 40px;       /* Adjust the width to make it circular */
            height: 40px;      /* Adjust the height to make it circular */
            padding: 0;        /* Remove padding to ensure the icon is centered */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dropdown .btn i {
            font-size: 20px;   /* Adjust the icon size if necessary */
        }

        .btn {
            padding: 4px 10px;  /* Adjusts the padding to make the button smaller */
            font-size: 0.875rem; /* Adjusts the font size */
            border-radius: 0.2rem; /* Optional: Adjusts the border radius if needed */
        }


        




.nav-wizard .nav-link {
  display: flex;
  align-items: center;
  padding-inline: 1rem;
  padding-block: 0.8rem;
}
.nav-justified > .nav-link, .nav-justified .nav-item
{
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
  width: 14rem;
  max-width: 14rem;
  /* text-overflow:initial; */

  

}

.nav-link
{
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}


.nav-justified > .nav-link, .nav-justified .nav-item
{
  text-align: center;
}
.nav-link
{
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
}

.nav-wizard .nav-link .wizard-step-text
{
  line-height: 1;
  text-align: left;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link
{
  color: var(--bs-nav-pills-link-active-color);
}
.nav-justified > .nav-link, .nav-justified .nav-item
{
  text-align: center;
}
.nav-link
{
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
}
.nav-wizard .nav-link.active .wizard-step-text .wizard-step-text-name
{
  color: #fff;
}
.nav-wizard .nav-link .wizard-step-text .wizard-step-text-name
{
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #198754;
}


.nav-wizard .nav-link.active .wizard-step-text .wizard-step-text-details
{
  color: rgba(255, 255, 255, 0.5);
}
.nav-wizard .nav-link .wizard-step-text .wizard-step-text-details
{
  font-weight: 400;
  font-size: 0.875rem;
  color: #69707a;
}
*, ::before, ::after
{
  box-sizing: border-box;
}
.nav-wizard .nav-link .wizard-step-text
{
  line-height: 1;
  text-align: left;
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link
{
  color: var(--bs-nav-pills-link-active-color);
}
.nav-justified > .nav-link, .nav-justified .nav-item
{
  text-align: center;
}

.nav-link {
    display: block;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    font-size: var(--bs-nav-link-font-size);
    font-weight: var(--bs-nav-link-font-weight);
    color: #1E3A8A;
}

.nav-wizard .nav-link.active {
    color: #FFFFFF;
    background-color: #1E3A8A;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.7);
}



.nav-wizard .nav-link .wizard-step-icon
{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  flex-shrink: 0;
  margin-right: 1rem;
  border-radius: 10rem;
  /* background: rgb(249,138,0); */
  background: #FF8C00; 
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.nav-wizard .nav-link.active .wizard-step-icon
{
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 100%); 
  color: #f98a00;
}

/* Global Button Pill Styling */
.btn {
    border-radius: 40px !important; /* Pill shape - fully rounded */
    padding: 8px 20px !important; /* Comfortable padding */
    font-weight: 500 !important; /* Medium font weight */
    transition: all 0.3s ease !important; /* Smooth transitions */
    text-transform: none !important; /* Keep original text case */
    letter-spacing: 0.3px !important; /* Slight letter spacing */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important; /* Subtle shadow */
}

/* Button hover effects */
.btn:hover {
    transform: translateY(-1px) !important; /* Slight lift on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important; /* Enhanced shadow on hover */
}

/* Button active/focus states */
.btn:active,
.btn:focus {
    transform: translateY(0) !important; /* Reset transform when pressed */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important; /* Pressed shadow */
}

/* Specific button size adjustments for pill shape */
.btn-sm {
    padding: 6px 16px !important;
    font-size: 0.875rem !important;
}

.btn-lg {
    padding: 12px 28px !important;
    font-size: 1.125rem !important;
}

/* Override any existing border-radius that might conflict */
.btn,
.btn-sm,
.btn-lg,
.btn-primary,
.btn-secondary,
.btn-success,
.btn-danger,
.btn-warning,
.btn-info,
.btn-light,
.btn-dark,
.btn-outline-primary,
.btn-outline-secondary,
.btn-outline-success,
.btn-outline-danger,
.btn-outline-warning,
.btn-outline-info,
.btn-outline-light,
.btn-outline-dark {
    border-radius: 50px !important;
}

/* HTMX Loading Indicators - Global Styles */
.htmx-indicator {
    display: none;
}

.htmx-request .htmx-indicator {
    display: block;
}

.htmx-request.htmx-indicator {
    display: block;
}

/* Details View Transitions */
#detailsView {
    transition: all 0.3s ease;
}

/* Details Card Styling */
.details-card {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.details-card .card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

/* Info Group Styles */
.info-group {
    margin-bottom: 1.5rem;
}

.info-label {
    display: block;
    font-weight: 600;
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1rem;
    color: #212529;
    font-weight: 400;
    padding: 0.75rem;
    background-color: #f8f9fa;
    border-radius: 0.375rem;
    border-left: 4px solid #1E3A8A;
}




.application-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.application-icon i {
    font-size: 1.8rem;
    color: white !important;
}

.application-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.application-meta .meta-label {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
    min-width: 80px;
}

.application-meta .meta-value {
    font-size: 1rem;
    color: #212529;
    font-weight: 600;
}

.application-meta .meta-value.badge {
    font-size: 0.75rem;
    padding: 0.35em 0.65em;
}

/* Responsive adjustments for application header */
@media (max-width: 768px) {
    .application-header {
        padding: 1rem;
    }
    
    .application-icon {
        width: 50px;
        height: 50px;
    }
    
    .application-icon i {
        font-size: 1.5rem;
    }
    
    .application-meta {
        text-align: left !important;
        margin-top: 1rem;
    }
    
    .application-meta .meta-item {
        justify-content: space-between;
    }
    
    .application-meta .meta-label {
        min-width: auto;
    }
}

/* Responsive Vertical Tabs for Small Screens */
@media (max-width: 768px) {
    .nav-wizard-container {
        margin-bottom: 1rem;
    }
    
    .nav-wizard {
        flex-direction: column !important;
        width: 100%;
    }
    
    .nav-wizard .nav-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 0.5rem;
    }
    
    .nav-wizard .nav-link {
        width: 100% !important;
        max-width: 100% !important;
        justify-content: flex-start;
        text-align: left;
        padding: 0.75rem 1rem;
    }
    
    .nav-wizard .nav-link .wizard-step-icon {
        margin-right: 0.75rem;
        flex-shrink: 0;
    }
    
    .nav-wizard .nav-link .wizard-step-text {
        text-align: left;
        flex-grow: 1;
    }
    
    .nav-wizard .nav-link .wizard-step-text-name {
        font-size: 0.9rem;
        margin-bottom: 0.1rem;
    }
    
    .nav-wizard .nav-link .wizard-step-text-details {
        font-size: 0.75rem;
    }
    
    /* Tab content adjustments for mobile */
    .tab-content {
        margin-top: 1rem;
    }
}

/* Extra small screens */
@media (max-width: 576px) {
    .nav-wizard .nav-link {
        padding: 0.6rem 0.8rem;
    }
    
    .nav-wizard .nav-link .wizard-step-icon {
        height: 2rem;
        width: 2rem;
        margin-right: 0.5rem;
    }
    
    .nav-wizard .nav-link .wizard-step-text-name {
        font-size: 0.85rem;
    }
    
    .nav-wizard .nav-link .wizard-step-text-details {
        font-size: 0.7rem;
    }
}