.no-results {
    padding: 1rem;
    color: #777;
    font-style: italic;
}

/*Multi select Status - Start */
.multi-select-status-filter {
    position: relative;
    width: 257px;
}

.filter-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid var(--Grey-500, #5A5A5A);
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    min-height: 44px;
}

.floating-label {
    position: absolute;
    left: 16px;
    transition: all 0.2s ease;
    pointer-events: none;
    color: #5A5A5A;
    background: white;
    padding: 0 4px;
    font-family: 'Avenir Next LT Pro';
    color: var(--Grey-500, #5A5A5A);
}

.label-float {
    transform: translateY(-20px) scale(0.85);
    color: #5A5A5A;
    font-family: 'Avenir Next LT Pro';
}

.filter-input-text {
    font-family: "Avenir Next LT Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
    letter-spacing: 0.07px;
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Avenir Next LT Pro';
    padding-left: 11px !important;
    color: #000000;
}

.placeholder {
    color: #6c757d;
}

.filter-dropdown-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 5px;
}

.arrow-down::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #6c757d;
}

.arrow-up::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid #6c757d;
}

.filter-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
    z-index: 1000;
    margin-top: 2px;
    max-height: 300px;
    overflow-y: auto;
}

.filter-menu-item {
    padding: 8px 12px;
    cursor: pointer;
}

    .filter-menu-item:hover {
        background-color: #f8f9fa;
    }

.category-header {
    padding: 8px 12px;
    font-weight: 600;
    color: #442666;
    background-color: #F7F6FE;
    font-size: 14px;
    font-family: 'Avenir Next LT Pro';
}

.empty-message {
    font-style: italic;
    color: #6c757d;
    font-family: 'Avenir Next LT Pro';
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    user-select: none;
    width: 100%;
    font-family: 'Avenir Next LT Pro';
}

    .checkbox-container input {
        position: absolute;
        opacity: 0;
        height: 0;
        width: 0;
    }

    .checkbox-container span {
        font-size: 14px;
    }

.checkmark {
    height: 24px;
    width: 24px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
}

.checkbox-container:hover input ~ .checkmark {
    border-color: #5F44FB;
}

.checkmark.selected {
    background-color: #5F44FB;
    border-color: #5F44FB;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 9px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after,
.checkmark.selected:after {
    display: block;
}

.select-all {
    /* border-bottom: 1px solid #dee2e6;*/
    margin-bottom: 2px;
}
/*Multi select Status - End */

/* Alert start*/
.alert {
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid transparent;
    transition: opacity 0.3s, transform 0.3s;
}

.alert-danger {
    background-color: #fff1f1;
    border-left-color: #dc3545;
}

.alert-success {
    background-color: #f1fff7;
    border-left-color: #28a745;
}

.alert-warning {
    background-color: #fffbf1;
    border-left-color: #ffc107;
}

.alert-info {
    background-color: #f1faff;
    border-left-color: #17a2b8;
}

.btn-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    padding: 0;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    color: #6c757d;
    margin-left: 15px;
}

.alert-danger .btn-close {
    color: #dc3545;
}

.alert-success .btn-close {
    color: #28a745;
}

.alert-warning .btn-close {
    color: #ffc107;
}

.alert-info .btn-close {
    color: #17a2b8;
}

.btn-close:hover {
    opacity: 1;
}

.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Alert End*/


/*spinner Start*/
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.3s, opacity 0.3s linear;
}

    .loading-overlay.active {
        visibility: visible;
        opacity: 0.7;
        transition-delay: 0s;
    }

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    border-radius: 8px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(95, 68, 251, 0.2);
    border-radius: 50%;
    border-left-color: #5F44FB;
    animation: spin 2s linear infinite;
    margin-bottom: 1rem;
}

.loading-text {
    font-size: 16px;
    color: #5F44FB;
    font-weight: 500;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*spinner End*/


/*Error Start*/
.error-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-height: 100vh;
    font-family: "Avenir Next LT Pro";
}

.error-content {
    padding: 2rem;
}

.error-title {
    font-size: 6rem;
    font-weight: 500;
    color: #d9534f;
    margin: 0;
    line-height: 1;
    letter-spacing: -2px;
}

.error-subtitle {
    font-size: 2rem;
    margin: 0.5rem 0;
    font-weight: 500;
    color: #111;
}

.error-message {
    margin: 1.5rem 0 3rem;
    color: #333;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-btn-back {
    background-color: #5F44FB;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Avenir Next LT Pro";
    font-size: 14px;
}

    .error-btn-back:hover {
        background-color: #5F44FB;
    }

.error-back-icon {
    font-size: 1.2rem;
}
/*Error End*/

/* Logout Start */
.logout-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f8f9fa;
    font-family: "Avenir Next LT Pro", Arial, sans-serif;
}

.logout-content {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    text-align: center;
}

.logout-log-container {
    margin-bottom: 2rem;
}

.logout-status-container {
    margin-bottom: 2.5rem;
}

.logout-status-icon {
    background-color: #e8f5e9;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.logout-title {
    font-size: 1.5rem;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.logout-help-text {
    color: #6c757d;
    font-size: 0.9rem;
}

.logout-help-link {
    color: #5F44FB;
    text-decoration: none;
    font-weight: 500;
}

    .logout-help-link:hover {
        text-decoration: underline;
    }
/* Logout End */


/*Not found Start*/
.not-found-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-height: 100vh;
    font-family: "Avenir Next LT Pro";
}

.not-found-content {
    padding: 2rem;
}

.not-found-title {
    font-size: 10rem;
    font-weight: 500;
    color: #111;
    margin: 0;
    line-height: 1;
    letter-spacing: -2px;
}

.not-found-subtitle {
    font-size: 2rem;
    margin: 0.5rem 0;
    font-weight: 500;
    color: #111;
}

.not-found-message {
    margin: 1.5rem 0 3rem;
    color: #333;
    font-size: 1.1rem;
}

.not-found-btn-back {
    background-color: #5F44FB;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Avenir Next LT Pro";
    font-size: 14px;
}

    .not-found-btn-back:hover {
        background-color: #5F44FB;
    }

.not-found-back-icon {
    font-size: 1.2rem;
}
/*Not found End*/

/*ClientId Selector Start*/
.micro-app-selector-select-changes {
    margin-bottom: 0px;
}

.micro-app-selector .dropdown-menu {
    overflow-y: auto;
    margin-top: -17px;
}

.micro-app-selector .dropdown-items-container {
    max-height: 250px;
    overflow-y: auto;
}

.micro-app-selector .dropdown-item {
    white-space: normal;
    word-break: break-word;
}

    .micro-app-selector .dropdown-item.active {
        background-color: #5F44FB;
        color: #ffffff;
        font-weight: 500;
    }
/*ClientId Selector End*/

/*User-profile Start*/
.user-profile-dropdown {
    position: relative;
    display: inline-block;
}

.profile-icon-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.profile-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.user-avatar {
    width: 100%;
    height: 100%;
    background-color: #5F44FB;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.profile-default-icon {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23495057' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.profile-dropdown-menu {
    position: absolute;
    right: 0;
    top: 45px;
    min-width: 240px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    overflow: hidden;
}

.profile-header {
    padding: 16px;
    border-bottom: 1px solid #e9ecef;
}

.profile-name {
    font-weight: 600;
    font-size: 16px;
    color: #212529;
    margin-bottom: 4px;
}

.profile-role {
    font-size: 14px;
    color: #6c757d;
}

.profile-menu-items {
    padding: 8px 0;
}

.profile-menu-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: #212529;
    transition: background-color 0.2s;
}

    .profile-menu-item:hover {
        background-color: #f8f9fa;
        text-decoration: none;
        color: #212529;
    }

.profile-item-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    opacity: 0.7;
    background-repeat: no-repeat;
    background-position: center;
}

.logout-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23495057' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4'%3E%3C/path%3E%3Cpolyline points='16 17 21 12 16 7'%3E%3C/polyline%3E%3Cline x1='21' y1='12' x2='9' y2='12'%3E%3C/line%3E%3C/svg%3E");
}

.profile-menu-item.logout {
    /* border-top: 1px solid #e9ecef; */
    margin-top: 4px;
    color: #dc3545;
}

    .profile-menu-item.logout:hover {
        background-color: rgba(220, 53, 69, 0.1);
    }

    .profile-menu-item.logout .profile-item-icon {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23dc3545' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4'%3E%3C/path%3E%3Cpolyline points='16 17 21 12 16 7'%3E%3C/polyline%3E%3Cline x1='21' y1='12' x2='9' y2='12'%3E%3C/line%3E%3C/svg%3E");
    }
/*User-profile End*/


/* Notifications - Start */
.notification-container {
    position: fixed;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 320px;
    max-width: 90%;
}

.notification-card {
    border-radius: 8px 8px 0 0;
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    margin-bottom: 0;
}

.notification-content {
    display: flex;
    align-items: center;
}

.notification-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.notification-text {
    flex: 1;
    font-size: 12px;
    font-weight: 600;
    padding: 0.25rem 0;
}

.notification-close {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: inherit;
    opacity: 0.8;
    transition: opacity 0.15s ease;
    padding: 0.25rem;
}

    .notification-close:hover {
        opacity: 1;
    }

.notification-progress {
    height: 5px;
    background-color: rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: -0.3rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.notification-progress-bar {
    height: 100%;
    transition: width 0.1s linear;
}

/* Type-specific styles */
.notification-error {
    background-color: #feecef;
    color: #dc3545;
    border-left: 4px solid #dc3545;
}

.notification-success {
    background-color: #e8f5e9;
    color: #28a745;
    border-left: 4px solid #28a745;
}

.notification-info {
    background-color: #e3f2fd;
    color: #17a2b8;
    border-left: 4px solid #17a2b8;
}

.notification-warning {
    background-color: #fff3e0;
    color: #ffa000;
    border-left: 4px solid #ffc107;
}

/* Progress bar colors */
.notification-bar-error {
    background-color: #dc3545;
}

.notification-bar-success {
    background-color: #28a745;
}

.notification-bar-info {
    background-color: #17a2b8;
}

.notification-bar-warning {
    background-color: #ffa000;
}

@keyframes fadeInNotification {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Positions */
.notification-top-right {
    top: 1rem;
    right: 1rem;
    align-items: flex-end;
}

.notification-top-left {
    top: 1rem;
    left: 1rem;
    align-items: flex-start;
}

.notification-bottom-right {
    bottom: 1rem;
    right: 1rem;
    top: auto;
    align-items: flex-end;
}

.notification-bottom-left {
    bottom: 1rem;
    left: 1rem;
    top: auto;
    align-items: flex-start;
}

.notification-middle-right {
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    align-items: flex-end;
}

.notification-middle-left {
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    align-items: flex-start;
}

.notification-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
}

.notification-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
    animation: fadeInNotification 0.3s ease-in-out;
}
/* Notifications - End */
