
.login-screen-blue form {
    background: rgb(48 70 108);
    border-radius: 12px !important
}


.copyright {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
}

.main-login-container {
    background-color: #041643;
    background-image: url('/static/img/login-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100vh;
    margin: 0;
}

.copyright {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
}


* {

    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


#user {
    transition: opacity 0.3s ease;
}


/* pagination */

.table-pagination {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.table-responsive {
    position: relative;
}

.user-menu-divider {
    width: 80%;
    margin: 0.5rem auto;
    border-color: rgba(255, 255, 255, 0.2);
}

.pagination-button {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.pagination-button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.pagination-button:focus {
    outline: none;
}

/* User Management Submenu */
.user-info-name-email {
    display: flex !important;
}

.user-info-name-email,
.user-info-role {
    display: none !important;
}

.submenu {
    display: none;
}

.submenu.show {
    display: block;
}



/* Show role when hovering sidebar */
#sidebar:hover .user-info-role {
    display: block !important;
}

/* Show name + email when hovering on user section */
#user:hover .user-info-name-email {
    display: flex !important;
}

/* Hide role if user section is hovered (more specific override) */
#sidebar:hover #user:hover .user-info-role {
    display: none !important;
}

.badge-count {
    font-size: 0.5rem;
    height: 16px;
    width: 16px;
    background-color: rgb(206, 52, 52);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* icons css */

.icon-box-center {
    display: flex;
    justify-content: center;
}

.icon-box {
    display: inline-block;
    width: 24px;
    text-align: center;
}

.icon-box svg {
    height: 26px;
    width: 26px;
}

.icon-box-user-profile svg {
    height: 40px;
    width: 40px;
}

.icon-box-bluebar{
    display: inline-block;
    text-align: center;
}

.icon-box-bluebar svg {
    height: 30px;
    width: 30px;
}

.icon-box-bluebar:hover svg,
.iicon-box-bluebar:hover i {
    fill: green;
    color: green;
    cursor: pointer;
}


/* Drawers Css */
.offcanvas-fullscreen {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
}

.offcanvas-body {
    overflow: hidden;
}


.offcanvas-half {
    width: 50% !important;
    max-width: 50% !important;
    height: 100% !important;
}

.offcanvas-50 {
    width: 50% !important;
    max-width: 50%;
    height: calc(100vh - 53px) !important;
}

.offcanvas-40 {
    width: 40% !important;
    max-width: 40%;
    height: calc(100vh - 53px) !important;
}

.offcanvas-35 {
    width: 35% !important;
    max-width: 35%;
    height: calc(100vh - 53px) !important;
}

.header {
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.main-content {
    position: relative;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem 4rem;
    height: calc(100vh - 180px);
    /* height: calc(100vh - 50px); */
    overflow: auto;
    
}

@media (min-width: 1199.98px) {
    .main-content {
        display: block; 
    }
}

.main-content.no-fixed-height {
    height: 100% !important;
}

.save-btn-fixed {
    position: absolute;
    bottom: 1.5rem;
    right: 4rem;
    z-index: 999;
}

.column {
    flex: 1;
}


.section-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
}


.cover-letter {
    height: 180px;
    overflow-y: auto;
    border: 1px solid #ddd;
    padding: 1rem;
    background: #fff;
    border-radius: 5px;
}

.row.g-3>div {
    margin-bottom: 0.5rem;
}

.skills span {
    background: #f1f1f1;
    border-radius: 20px;
    padding: 5px 12px;
    margin: 4px;
    display: inline-block;
    font-size: 0.9rem;
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

.footer {
    font-size: 11px;
    font-weight: 500;
    background: #e9ecef;
    padding: 1rem 2rem;
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.footer.disabled {
    /* opacity: 0.5; */
    pointer-events: none;
    user-select: none;
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }
}

/* check box of applications */
.custom-checkbox {
    transform: scale(1.5);
}

/* flash container */
#flash-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1055;
    /* higher than Bootstrap modals/offcanvas */
    width: 350px;
}

.disabled {
    color: grey !important;
}

/* .full-height-row {
    display: flex;
    height: 75vh;
    overflow: hidden;
  } */

.fixed-left {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    background-color: #fff;
    z-index: 1;
}

.scrollable-right {
    height: 75vh;
    overflow-y: auto;
    padding-left: 1rem;
    background-color: #f9f9f9;
}

.fixed-left::-webkit-scrollbar,
.scrollable-right::-webkit-scrollbar {
    width: 6px;
}

.fixed-left:hover,
.scrollable-right:hover {
    scrollbar-width: thin;
}

.drawer-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

.center-dash {
    justify-content: center !important;
    text-align: center;
}

#ratings-container {
    max-height: 400px;  
    overflow-y: auto;
    margin-bottom: 1rem;
}