@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/Plus_Jakarta_Sans/PlusJakartaSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Figtree';
    src: url('../fonts/Figtree/Figtree-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/satoshi/Satoshi-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/satoshi/Satoshi-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/satoshi/Satoshi-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

.welcome-message {
  height: calc(100vh - 250px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking__body {
    background-color: #F4F4F7;
    padding: 24px;
}

.title__booking {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    padding-left: 15px;
    color: #1D2708;
}

.booking__container {
    margin: auto;
    width: 100%;
}

.booking__status_count {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 35px;

}

.booking__table {
    padding: 24px;
    background-color: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #EAF0F7;
    margin-top: 24px;
}

.booking__action-center {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.booking__actions {
    display: flex;
    align-items: center;
    gap: 12px;

}

.booking__tabs_search {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fade-enter-active,
.fade-leave-active {
    transition: opacity 0.2s ease;
}

.selection-count-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #e9ecef;
    padding: 12px 16px;
    margin-top: 20px;
    width: 15%;
    border-radius: 6px;
    margin-bottom: 16px;
    border-left: 4px solid #007bff;
}

.selection-count-text {
    font-weight: 600;
    color: #495057;
}

.clear-selection-btn {
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.clear-selection-btn:hover {
    color: #495057;
    text-decoration: underline;
}


.fade-enter-from,
.fade-leave-to {
    opacity: 0;
}

.cursor-not-allowed {
    cursor: not-allowed;
    opacity: 0.6;
}

.drop-down {
    position: absolute;
    margin-top: 10px;
    width: 203px;
    background-color: white;
    border-radius: 8px;
    border: 1px solid #C4C4CC;
}

.sub-drop-down {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 4px;
    background-color: white;
    border-radius: 8px;
    border: 1px solid #C4C4CC;
    min-width: 180px;
    z-index: 10;
}

.action-menu {
    position: absolute;
    right: 0;
    top: 100%;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    z-index: 50;
    min-width: 180px;
    margin-top: 4px;
    padding: 8px 0;
}

.action-menu-top {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 4px;
}

.action-menu li {
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
    transition: background-color 0.2s;
}

.action-menu li:hover {
    background-color: #f3f4f6;
}

.action-menu li a {
    display: block;
    text-decoration: none;
    color: inherit;
}


.fade-enter-active, .fade-leave-active {
    transition: opacity 0.2s, transform 0.2s;
}

.fade-enter, .fade-leave-to {
    opacity: 0;
    transform: translateY(-10px);
}

.action-menu-top.fade-enter, .action-menu-top.fade-leave-to {
    transform: translateY(10px);
}

.relative {
    position: relative;
}

.menu-dropdown {
    position: relative;
    padding: 10px;
    color: #4E4B66;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    list-style-type: none;
    white-space: nowrap;
}

.sub-drop-down {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 4px;
    background-color: white;
    border-radius: 8px;
    border: 1px solid #C4C4CC;
    min-width: 180px;
    z-index: 10;
}

.menu-dropdown:hover {
    background-color: #212529;
    color: white;
}

::v-deep .btn:focus,
.btn.focus {
    outline: none !important;
    box-shadow: none !important;
}

.loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
}

.custom-all-border {
    border: 2px solid #ddd !important;
}