/* /Layout/EmptyLayout.razor.rz.scp.css */
body[b-39scsmps7u], html[b-39scsmps7u] {
    all: revert;
    margin: 0;
    padding: 0;
        overflow: auto;
    display: block;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-j9lburfsc0] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-j9lburfsc0] {
    flex: 1;
}

.sidebar[b-j9lburfsc0] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-j9lburfsc0] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-j9lburfsc0]  a, .top-row[b-j9lburfsc0]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-j9lburfsc0]  a:hover, .top-row[b-j9lburfsc0]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-j9lburfsc0]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-j9lburfsc0] {
        justify-content: space-between;
    }

    .top-row[b-j9lburfsc0]  a, .top-row[b-j9lburfsc0]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-j9lburfsc0] {
        flex-direction: row;
    }

    .sidebar[b-j9lburfsc0] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-j9lburfsc0] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-j9lburfsc0]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-j9lburfsc0], article[b-j9lburfsc0] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
.user-card[b-j9lburfsc0] {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    padding: 5px;
    border-radius: 50px; /* Makes it a pill shape */
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #eee;
    overflow: hidden; /* This makes the "slide" look like it's coming from inside */
}

.acount-drop[b-j9lburfsc0] {
    max-width: 0; /* Starts at zero width */
    opacity: 0;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Smooth "out" motion */
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Hover State */
.user-card:hover[b-j9lburfsc0] {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: #fdfdfd;
}

    .user-card:hover .acount-drop[b-j9lburfsc0] {
        max-width: 150px; /* Adjust based on your text length */
        opacity: 1;
        padding: 0 15px; /* Adds space for the text */
    }
/* /Pages/EmployeesView.razor.rz.scp.css */
.list-container[b-tanw8cerwg] {
/*    width: 100% !important;*/
/*    padding-bottom:10px;*/
    overflow-y:auto;
}

.title-container[b-tanw8cerwg] {
/*    flex: 0 1 auto;*/
}

.tabs-container[b-tanw8cerwg] {
    flex: 1 1 auto;
}

.tabs-expander[b-tanw8cerwg] {
    flex: 1 1 auto;
}

.topper-action[b-tanw8cerwg] {
    flex: 0 1 auto;
}



.side-search[b-tanw8cerwg] {
    padding: 10px;
    width: 15%;
    display:flex;
    flex-direction:column;

}

@media screen and (max-width:1048px) {
}

@media screen and (max-width:900px) {

    .tabs-container[b-tanw8cerwg] {
        display: none;
        visibility: hidden;
        width: 0 !important;
    }

    .btn-more-action[b-tanw8cerwg] {
        display: flex !important;
    }

    .topper-action[b-tanw8cerwg] {
        display: none !important;
    }
}
/* /Pages/ProfileView.razor.rz.scp.css */

.cards-container[b-lrotgxjzbs] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
    padding: 20px;
}

.card[b-lrotgxjzbs] {
    background-color: #f3f3f3;
    border: none;
    width: 100%;
    text-align: center;
    padding: 15px 25px;
    border-radius: 10px;
    transition: 0.3s ease;
    z-index: 999;
    flex: 1 1 auto;
    /*    min-width: 13%; 
    max-width: 23%;*/
}

    .card:hover[b-lrotgxjzbs] {
        transform: scale(1.05);
        background-color: var(--color-secondary) !important;
        color: white !important;
    }

        .card:hover h1[b-lrotgxjzbs] {
            color: white !important;
        }

    .card h1[b-lrotgxjzbs], h2[b-lrotgxjzbs], h3[b-lrotgxjzbs], h4[b-lrotgxjzbs], h5[b-lrotgxjzbs], h6[b-lrotgxjzbs] {
        padding: 0;
        margin: 0;
    }

    .card h1[b-lrotgxjzbs] {
        color: var(--color-secondary)
    }

.expander-containers[b-lrotgxjzbs] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.doc-detail-section[b-lrotgxjzbs] {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: end;
    gap: 20px;
    margin-top: 10px;
}

    .doc-detail-section p[b-lrotgxjzbs] {
        padding: 0;
        margin: 0;
    }

.ltr[b-lrotgxjzbs] {
    display: flex;
    flex-direction: column;
    align-items: start;
}

button[b-lrotgxjzbs] {
    transition: 0.3s ease;
    padding-inline: 10px;
}

.Active-Toggle[b-lrotgxjzbs] {
    background-color: var(--color-secondary);
    color: white !important;
}

    .Active-Toggle span[b-lrotgxjzbs] {
        color: white;
    }

.actionItem[b-lrotgxjzbs] {
    margin-block: 2px;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

    .actionItem:hover[b-lrotgxjzbs] {
        background-color: var(--color-secondary) !important;
        color: white !important;
    }

        .actionItem:hover span[b-lrotgxjzbs] {
            color: white !important;
        }

.actionsContainer[b-lrotgxjzbs] {
    opacity: 1 !important;
    background-color: white !important;
}
