@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

/* @ Font Family */
* {
    font-family: "Manrope", sans-serif;
}

/* # Font Family */
/* @ Login Page */
.login-page {
    width: 100%;
    height: 100vh;
    background: url("https://degournay.com/uploads/colourway/original/18012024102459_panel.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.login-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.login-form img {
    width: 150px;
    margin-bottom: 12px;
}

.login-form h5 {
    font-weight: 600;
    text-transform: uppercase;
}

.login-form p {
    font-size: 14px;
}

.login-form input:focus {
    box-shadow: none;
}

/* # Login Page */
.line-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header {
    padding: 4px 0;
    background: #efefef;
    position: sticky;
    z-index: 123;
}

.no-label {
    height: 32px;
}

.has-pattern {
    color: #aeacac !important;
}

.dash_thumb {
    width: 220px;
    padding: 24px;
    border-radius: 12px;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    margin-bottom: 24px;
    background: linear-gradient(45deg, #ed5d1e, #f7932c);
}

.dash_thumb p {
    margin-bottom: 0;
}

/* ---> Main Menu <--- */
.main-menu {
    margin: 12px 0;
}

.main-menu ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-menu ul li {
    list-style: none;
    margin: 0 6px;
}

.main-menu ul li a {
    color: #fff;
    padding: 6px 12px;
    display: inline-block;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
    background: linear-gradient(45deg, #0a58ca, #0a6eff);
}

.main-menu ul li a:hover,
.main-menu ul li a.active {
    background: linear-gradient(45deg, #ed5d1e, #f7932c);
}

.main-menu ul li a i {
    margin-right: 8px;
}

.user-highlight {
    position: absolute;
    top: 50%;
    right: 12px;
    color: #23d100;
    transform: translateY(-50%);
}

.indv-project {
    border-radius: 6px;
    background: #f2f2f2;
}

.indv-project h2 {
    font-size: 55px;
    color: #ffd312;
}

.indv-project p {
    color: #666;
}

.my-project a,
.view-project a {
    text-decoration: none;
}

.view-project a .indv-project {
    padding: 8px 12px;
}

.view-project .indv-project h2 {
    font-size: 24px;
    margin: 0;
    color: #0a58ca;
    display: flex;
    align-items: center;
}

.view-project .indv-project h2 span {
    font-size: 14px;
    color: #666;
    margin-left: 12px;
}

/* --//-- */
.table-scroll-container {
    width: 100%;
    height: 80vh;
    overflow: auto;
    margin-bottom: 24px;
}

/* Scroll Bar */
.table-scroll-containerxxx::-webkit-scrollbar {
    width: 10px;
    /* width of the scroll bar */
    height: 10px;
    /* height of the scroll bar */
}

.table-scroll-containerxxx::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ed5d1e, #f7932c);
    /* color of the scroll bar thumb */
    border-radius: 0px;
    /* rounded corners for the scroll bar thumb */
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    /* add some depth to the scroll bar thumb */
}

.table-scroll-containerxxx::-webkit-scrollbar-thumb:hover {
    background-color: #555;
    /* hover color of the scroll bar thumb */
}

.table-scroll-containerxxx::-webkit-scrollbar-track {
    background-color: #f0f0f0;
    /* color of the scroll bar track */
    border-radius: 0px;
    /* rounded corners for the scroll bar track */
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    /* add some depth to the scroll bar track */
}

.table-fixed {
    min-width: 100%;
    table-layout: fixed;
    font-size: 11px !important;
}

.divider {
    border-left: 3px solid #212529 !important;
}

a {
    transition: all 0.5s ease;
}

a:hover .indv-project {
    background: #e4efff;
}

.or-devider {
    border-bottom: 1px solid #c4c4c4;
    margin: 12px 0;
}

.or-devider-text {
    background: #fff;
    width: 40px;
    margin: 0 auto -12px;
}

.found-holiday {
    background-color: #5a5a5a;
    color: #5a5a5a;
    pointer-events: none;
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
}

.form-label {
    font-size: 14px;
}

.month-name {
    writing-mode: sideways-lr;
    display: inline-block;
    text-wrap-mode: nowrap;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.red-date a {
    background-color: #e84425 !important;
    color: white !important;
}

.blue-date a {
    background-color: #2196f3 !important;
    color: white !important;
}

.green-date a {
    background-color: #4caf50 !important;
    color: white !important;
}

.ui-datepicker-unselectable > .ui-state-default {
    visibility: hidden;
}