/**
font-family: "Adobe Clean Light", sans-serif
font-family: "Adobe Clean Light Italic", sans-serif
font-family: "Adobe Clean Regular", sans-serif
font-family: "Adobe Clean Italic", sans-serif
font-family: "Adobe Clean Bold", sans-serif
font-family: "Adobe Clean Bold Italic", sans-serif
font-family: "Adobe Clean Semi Condensed", sans-serif
font-family: "Adobe Clean Semi Condensed Italic", sans-serif
font-family: "Adobe Clean Bold Semi Condensed", sans-serif
font-family: "Adobe Clean Bold Semi Condensed Italic", sans-serif
**/
@font-face {
    font-family: "Adobe Clean Light";
    src: url("../fonts/adobe/AdobeClean-Light.ttf");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Adobe Clean Light Italic";
    src: url("../fonts/adobe/AdobeClean-LightIt.ttf");
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: "Adobe Clean Regular";
    src: url("../fonts/adobe/AdobeClean-Regular.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Adobe Clean Italic";
    src: url("../fonts/adobe/AdobeClean-It.ttf");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: "Adobe Clean Bold";
    src: url("../fonts/adobe/AdobeClean-Bold.ttf");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Adobe Clean Bold Italic";
    src: url("../fonts/adobe/AdobeClean-BoldItalic.ttf");
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: "Adobe Clean Semi Condensed";
    src: url("../fonts/adobe/AdobeClean-SemiCn.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Adobe Clean Semi Condensed Italic";
    src: url("../fonts/adobe/AdobeClean-SemiCnIt.ttf");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: "Adobe Clean Bold Semi Condensed";
    src: url("../fonts/adobe/AdobeClean-BoldSemiCn.ttf");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Adobe Clean Bold Semi Condensed Italic";
    src: url("../fonts/adobe/AdobeClean-BoldSemiCnIt.ttf");
    font-weight: bold;
    font-style: italic;
}

a {
    text-decoration: none !important;
}

body {
    margin: 0;
    border-radius: 0;
}

body * {
    font-family: "Adobe Clean Regular", sans-serif;
}

.shadow {
    box-shadow: "0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05)"
}

/* Header - Fixed Position */
.header-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    padding: 0;
    background-color: #fff;
    border-bottom: 1px solid #CBD0DD;
    transition: left 0.3s ease-in-out, width 0.3s ease-in-out;
    z-index: 999;
}

.header-top .logoWrapper a img {
    width: 80px;
    height: 44px;
}


/* Main Content - Below Header */

.main-content {
    position: relative;
    margin-top: 44px;
    background-color: #F5F7FA;
    transition: margin-left 0.3s ease-in-out;
    min-height: calc(100vh - 44px);
}

.main-heading {
    position: relative;
    display: inline-block;
    font-family: "Adobe Clean Bold Semi Condensed Italic";
}

.fc .fc-button {
    background-color: #1677ff !important;
    color: white !important;
    border: none !important;
    padding: 8px 14px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    transition: background 0.3s ease-in-out;
}

.fc .fc-button:hover {
    background-color: #125bcc !important;
    border: none !important;
    box-shadow: none !important;
}

.fc .fc-button-primary {
    background-color: #1677ff !important;
}

.fc .fc-button-active {
    background-color: #125bcc !important;
    border: none !important;
    box-shadow: none !important;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #0d70cc;
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: #007acc;
}

::-webkit-scrollbar-button {
    display: none;
}


.fc-daygrid-day-frame {
    max-height: 300px;
    overflow-y: auto;
}

.fc-daygrid-day-frame::-webkit-scrollbar {
    width: 6px;
}

.addUser::-webkit-scrollbar {
    width: 4px;
}

.fc-header-toolbar {
    background-color: white;
    position: sticky;
    top: 44px;
    z-index: 998;
    border-bottom: 1px solid #ddd;
}

.ant-modal-header {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background-color: white !important;
    padding: 10px 0px !important;
    border-bottom: 1px solid #ddd !important;
    border-radius: 0px !important;
    z-index: 1100 !important;
}

.ant-modal-content::-webkit-scrollbar {
    width: 6px;
}

.ant-modal-footer {
    position: sticky !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background-color: white !important;
    padding: 10px 0px !important;
    border-top: 1px solid #ddd !important;
    z-index: 900 !important;
}

.ant-breadcrumb ol {
    align-items: center !important;
}