﻿
.switch {
    position: relative;
    /*display: inline-block;*/
    width: 37px;
    height: 19px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 15px;
        width: 15px;
        left: 1px;
        bottom: 2px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #7030A0;
}

input:focus + .slider {
    box-shadow: 0 0 0px #7030A0;
}

input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }



.field-validation-error {
    color: #7030A0;
}

a {
    color: #7030A0;
}
    a:hover,
    a:focus {
        color: #191716;
    }

.btn-themyriad {
    background-color: #7030A0;
    border-color: #7030A0;
    color: #fff;
}

    .btn-themyriad:hover,
    .btn-themyriad:active,
    .btn-themyriad:focus,
    .btn-themyriad.hover {
        background-color: #191716;
        border-color: #191716;
        color: #fff;
    }





.btn-group .btn-themyriad {
    border-color: #4e4849;
}

    .btn-group .btn-themyriad:hover,
    .btn-group .btn-themyriad:active,
    .btn-group .btn-themyriad:focus,
    .btn-group .btn-themyriad.hover {
        background-color: #ce1925;
    }





.btn-themyriad-black {
    background-color: #191716;
    border-color: #191716;
    color: #fff;
}

    .btn-themyriad-black:hover,
    .btn-themyriad-black:active,
    .btn-themyriad-black:focus,
    .btn-themyriad-black.hover {
        background-color: #7030A0;
        border-color: #7030A0;
        color: #fff;
    }

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
    background-color: #7030A0;
    border-color: #7030A0;
}
td {
    vertical-align: middle !important;
}
.menu-icons {
    text-align: center;
    color: #7030A0;
    vertical-align: middle !important;
    white-space: nowrap;
}
    .menu-icons .fa {
        margin-right: 5px;
        cursor: pointer;
        font-size: 16px;
    }
        .action-for-placement {
            font-size: 19px !important;
        }

    .menu-icons a:hover {
    opacity: 0.8;
    }

.skin-black .main-header .logo img {
    width: 70%;
}
@media (max-width: 767px)  {
    .skin-black .main-header > .logo {
        background-color: #d4d4d4;
        color: #333;
    }
        .skin-black .main-header > .logo:hover {
            background-color: #d4d4d4;
            color: #333;
        }
    .skin-black .main-header .logo img {
        width: 40%;
    }
}


#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

    #snackbar.show {
        visibility: visible;
        -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
        animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}



/*Loader*/

.myriad-loader {
    width: 100%;
    height: 100%;
    text-align: center;
    position: fixed;
    top: 0px;
    left: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.9);
    z-index: 99999;
    /* transition: 1s 0.4s; */
}

#loading-bar-spinner.spinner {
    left: 50%;
    margin-left: -20px;
    top: 50%;
    margin-top: -20px;
    position: absolute;
    z-index: 19 !important;
    animation: loading-bar-spinner 400ms linear infinite;
}

    #loading-bar-spinner.spinner .spinner-icon {
        width: 40px;
        height: 40px;
        border: solid 4px transparent;
        border-top-color: #7030A0 !important;
        border-left-color: #7030A0 !important;
        border-radius: 50%;
    }

@keyframes loading-bar-spinner {
    0% {
        transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*loader end*/

.row {
    margin-right: 0px !important;
    margin-left: 0px !important;
}

/* common.css */

/* Page Load Animation */
.page-container {
    opacity: 0;
    transform: translateY(15px);
    animation: pageLoad 0.4s ease-out forwards;
}

@keyframes pageLoad {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Filter Controls Animation */
.filter-row > div {
    opacity: 0;
    transform: translateX(-10px);
    animation: slideInLeft 0.3s ease-out forwards;
}

    .filter-row > div:nth-child(1) {
        animation-delay: 0.05s;
    }

    .filter-row > div:nth-child(2) {
        animation-delay: 0.08s;
    }

    .filter-row > div:nth-child(3) {
        animation-delay: 0.11s;
    }

    .filter-row > div:nth-child(4) {
        animation-delay: 0.14s;
    }

    .filter-row > div:nth-child(5) {
        animation-delay: 0.17s;
    }

    .filter-row > div:nth-child(6) {
        animation-delay: 0.2s;
    }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Table Animation */
.data-table {
    opacity: 0;
    transform: translateY(10px);
    animation: tableLoad 0.4s ease-out 0.3s forwards;
}

@keyframes tableLoad {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Table Row Stagger Animation */
.data-table tbody tr {
    opacity: 0;
    transform: translateX(-8px);
    animation: rowSlideIn 0.25s ease-out forwards;
}

@keyframes rowSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Card Header Animation */
.card-header {
    opacity: 0;
    transform: translateY(-5px);
    animation: headerSlide 0.3s ease-out 0.1s forwards;
}

@keyframes headerSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search Button Hover Effect */
.button-effect {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .button-effect::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .button-effect:hover::before {
        left: 100%;
    }

    .button-effect:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

/* DataTable Wrapper Animation */
.dataTables_wrapper {
    opacity: 0;
    transform: translateY(5px);
    animation: dtWrapperLoad 0.3s ease-out 0.4s forwards;
}

@keyframes dtWrapperLoad {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Transitions for Form Elements */
.form-control,
.select2 {
    transition: all 0.3s ease;
}

    .form-control:focus,
    .select2:focus {
        transform: scale(1.02);
        box-shadow: 0 0 10px rgba(52, 152, 219, 0.3);
    }

.modal-dialog {
    width: 600px;
}

.modal-content {
    border-radius: 8px;
}

.modal-header {
    background: linear-gradient(135deg, #c31622 0%, #000000 100%);
    color: white;
    border-radius: 8px 8px 0 0;
}

    .modal-header .close {
        color: white;
        opacity: 0.8;
    }

        .modal-header .close:hover {
            opacity: 1;
        }

/* ODYSSEY PMS THEME OVERRIDES
   Presentation-only branding for Odyssey Hotel test deployment.
   Legacy class names are intentionally retained to avoid functional changes.
*/

:root {
    --odyssey-purple: #7030A0;
    --odyssey-purple-dark: #5B2585;
    --odyssey-charcoal: #4F4F4F;
}

/* Legacy Myriad button hook, visually Odyssey */
.btn-themyriad {
    background-color: #7030A0 !important;
    border-color: #7030A0 !important;
    color: #ffffff !important;
}

.btn-themyriad:hover,
.btn-themyriad:active,
.btn-themyriad:focus,
.btn-themyriad.hover {
    background-color: #5B2585 !important;
    border-color: #5B2585 !important;
    color: #ffffff !important;
}

/* Shared branded icon/text colour */
.text-theme-color {
    color: #7030A0 !important;
}

/* AdminLTE danger boxes were historically used as brand accents.
   Change border only. Genuine alert-danger/error styling is untouched. */
.box.box-danger {
    border-top-color: #7030A0 !important;
}

/* Odyssey links inside branded panels */
.panel-title {
    border-color: #7030A0;
}


/* ODYSSEY HOTEL SIDEBAR OVERRIDES
   Keep the navigation dark for contrast while introducing
   Odyssey purple through active and hover states.
*/

.skin-black .main-sidebar,
.skin-black .left-side {
    background-color: #24212B !important;
}

.skin-black .sidebar {
    background-color: #24212B !important;
}

.skin-black .sidebar-menu > li.header {
    background-color: #1F1C25 !important;
    color: #81758D !important;
}

.skin-black .sidebar-menu > li > a {
    color: #D8D4DC !important;
}

.skin-black .sidebar-menu > li:hover > a,
.skin-black .sidebar-menu > li.active > a,
.skin-black .sidebar-menu > li.menu-open > a {
    color: #FFFFFF !important;
    background-color: #30293A !important;
    border-left-color: #7030A0 !important;
}

.skin-black .sidebar-menu > li > .treeview-menu {
    background-color: #292430 !important;
}

.skin-black .sidebar-menu .treeview-menu > li > a {
    color: #BBB4C2 !important;
}

.skin-black .sidebar-menu .treeview-menu > li.active > a,
.skin-black .sidebar-menu .treeview-menu > li > a:hover {
    color: #FFFFFF !important;
    background-color: #352C40 !important;
}

.skin-black .sidebar-menu .treeview-menu > li.active > a {
    border-left: 3px solid #7030A0 !important;
}

/* Keep user panel visually integrated with Odyssey navigation */
.skin-black .user-panel,
.skin-black .sidebar-form {
    background-color: #24212B !important;
}


/* ODYSSEY DASHBOARD VISUAL V3 START */

/* ==========================================================
   PAGE
========================================================== */

.content-wrapper {
    background: #f5f4f8 !important;
}

.content {
    padding: 24px 24px 8px !important;
}

.content::before,
.content::after {
    content: " ";
    display: table;
}

.content::after {
    clear: both;
}


/* ==========================================================
   OCCUPIED ROOMS HEADER
========================================================== */

.content > .col-lg-12.panel:first-of-type {
    background: #ffffff !important;
    border: 1px solid #ece8f0 !important;
    border-radius: 12px !important;
    padding: 19px 22px 18px !important;
    margin-bottom: 18px !important;
    box-shadow: 0 3px 14px rgba(39, 28, 49, .055) !important;
}

.content > .col-lg-12.panel:first-of-type h3 {
    margin: 0 0 12px !important;
    font-size: 20px !important;
    line-height: 1.25 !important;
    font-weight: 600 !important;
    color: #27212e !important;
}

.content > .col-lg-12.panel:first-of-type .progress {
    height: 7px !important;
    border-radius: 8px !important;
    background: #eeeaf1 !important;
    margin: 0 !important;
    box-shadow: none !important;
}

.content > .col-lg-12.panel:first-of-type .progress-bar {
    border-radius: 8px !important;
    background: #7030A0 !important;
    box-shadow: none !important;
}


/* ==========================================================
   OCCUPANCY OVERVIEW
========================================================== */

.odyssey-occupancy-card {
    min-height: 255px !important;
    background: #ffffff !important;
    border: 0 !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 72px !important;
    padding: 30px 38px !important;
}

.content > .col-lg-12.panel:has(.odyssey-occupancy-card) {
    border-radius: 12px !important;
    border: 1px solid #ece8f0 !important;
    box-shadow: 0 3px 14px rgba(39, 28, 49, .055) !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #ffffff !important;
    margin-bottom: 22px !important;
}

.odyssey-occupancy-ring {
    --size: 166px !important;
}

.odyssey-occupancy-ring::after {
    inset: 14px !important;
}

.odyssey-occupancy-percent {
    font-size: 34px !important;
    font-weight: 700 !important;
    color: #7030A0 !important;
}

.odyssey-occupancy-label {
    font-size: 13px !important;
    color: #716978 !important;
}

.odyssey-occupancy-summary {
    min-width: 190px !important;
}

.odyssey-occupancy-stat {
    padding: 8px 0 !important;
}

.odyssey-stat-label {
    font-size: 12px !important;
    color: #7a7180 !important;
}

.odyssey-stat-value {
    font-size: 24px !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;
    color: #29222f !important;
}

.odyssey-total-label {
    margin-top: 14px !important;
    padding-top: 14px !important;
    border-top: 1px solid #eee9f1 !important;
    font-size: 12px !important;
    color: #7a7180 !important;
}


/* ==========================================================
   ALL KPI CARDS
========================================================== */

.content .small-box {
    min-height: 132px !important;
    border-radius: 11px !important;
    overflow: hidden !important;
    margin-bottom: 18px !important;
    border: 1px solid #ebe6ef !important;
    box-shadow: 0 4px 14px rgba(42, 29, 53, .07) !important;
    transition: transform .15s ease, box-shadow .15s ease !important;
}

.content .small-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(42, 29, 53, .11) !important;
}

.content .small-box .inner {
    padding: 16px 16px 11px !important;
}

.content .small-box h3 {
    margin: 0 0 7px !important;
    font-size: 34px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
}

.content .small-box p {
    font-size: 13px !important;
    line-height: 1.35 !important;
    margin: 0 !important;
}

.content .small-box-footer {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 30px !important;
    line-height: 30px !important;
    padding: 0 14px !important;
    text-align: left !important;
    font-size: 11px !important;
}

.content .small-box-footer i {
    float: right !important;
    line-height: 30px !important;
}


/* ==========================================================
   FIRST FOUR OPERATIONAL KPI CARDS
========================================================== */

.content > .col-lg-3:nth-of-type(3) .small-box,
.content > .col-lg-3:nth-of-type(5) .small-box {
    background: linear-gradient(135deg, #8f6bb3 0%, #7953a2 100%) !important;
    border-color: transparent !important;
}

.content > .col-lg-3:nth-of-type(4) .small-box,
.content > .col-lg-3:nth-of-type(6) .small-box {
    background: linear-gradient(135deg, #7030A0 0%, #592282 100%) !important;
    border-color: transparent !important;
}

.content > .col-lg-3:nth-of-type(3) .small-box .small-box-footer,
.content > .col-lg-3:nth-of-type(5) .small-box .small-box-footer,
.content > .col-lg-3:nth-of-type(4) .small-box .small-box-footer,
.content > .col-lg-3:nth-of-type(6) .small-box .small-box-footer {
    background: rgba(35, 13, 50, .16) !important;
}


/* ==========================================================
   WHITE KPI CARDS
========================================================== */

.content .small-box[style*="background-color: white"] {
    background: #ffffff !important;
}

.content .small-box[style*="background-color: white"] .inner {
    color: #2d2731 !important;
}

.content .small-box[style*="background-color: white"] h3 {
    color: #7030A0 !important;
}

.content .small-box[style*="background-color: white"] p {
    color: #554d5a !important;
}

.content .small-box[style*="background-color: white"] .small-box-footer {
    background: #faf9fb !important;
    border-top: 1px solid #eeeaf1 !important;
    color: #7030A0 !important;
}


/* ==========================================================
   QUICK ACCESS
========================================================== */

.panel-body-Split-Row {
    padding-left: 24px !important;
    padding-right: 24px !important;
}

.panel-body-Split-Row > .panel {
    border: 1px solid #e9e4ed !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 3px 15px rgba(40, 28, 50, .06) !important;
    background: #ffffff !important;
}

.panel-body-Split-Row > .panel > .panel-heading {
    background: #ffffff !important;
    border: 0 !important;
    border-bottom: 1px solid #eeeaf1 !important;
    padding: 16px 20px !important;
    position: relative !important;
}

.panel-body-Split-Row > .panel > .panel-heading .panel-title {
    background: transparent !important;
    color: #29222f !important;
    padding: 0 !important;
    text-align: left !important;
    font-size: 17px !important;
    line-height: 24px !important;
    font-weight: 600 !important;
}

.panel-body-Split-Row > .panel > .panel-heading .panel-title::after {
    content: "";
    display: block;
    width: 32px;
    height: 3px;
    background: #7030A0;
    border-radius: 4px;
    margin-top: 9px;
}

.panel-body-Split-Row .panel-body {
    padding: 22px !important;
}


/* Quick Access grid */

.btnCustome {
    height: 88px !important;
    min-height: 88px !important;
    background: #ffffff !important;
    border: 1px solid #ebe6ef !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 9px rgba(41, 29, 50, .045) !important;
    color: #342d39 !important;
    padding: 13px 8px !important;
    transition: all .15s ease !important;
}

.btnCustome:hover {
    background: #faf8fc !important;
    border-color: #cdb7dc !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(72, 38, 97, .10) !important;
}

.btnCustome i {
    color: #7030A0 !important;
    font-size: 27px !important;
    margin-bottom: 7px !important;
}

.btnCustome b {
    color: #332c37 !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}

.panel-body-Split-Row .panel-body br {
    line-height: 8px !important;
}


/* ==========================================================
   PENDING PAYMENTS
========================================================== */

#FeeAssessment_wrapper {
    padding-top: 2px !important;
}

#FeeAssessment {
    border: 0 !important;
}

#FeeAssessment thead th {
    background: #faf9fb !important;
    color: #514957 !important;
    border-bottom: 1px solid #e8e3eb !important;
    padding: 12px 10px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}

#FeeAssessment tbody td {
    padding: 12px 10px !important;
    border-top: 1px solid #f0edf2 !important;
    color: #4b444f !important;
    font-size: 12px !important;
}

.dataTables_wrapper .dataTables_filter input {
    border: 1px solid #dcd5e1 !important;
    border-radius: 7px !important;
    height: 31px !important;
    padding: 4px 9px !important;
    outline: none !important;
}

.dataTables_wrapper .dataTables_filter input:focus {
    border-color: #a57abb !important;
    box-shadow: 0 0 0 2px rgba(112,48,160,.08) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: 6px !important;
}


/* Pending Payments header tools remain usable */

.box-tools {
    top: 12px !important;
    right: 12px !important;
}

.box-tools .btn-box-tool i {
    color: #746b79 !important;
}


/* ==========================================================
   TYPOGRAPHY
========================================================== */

.content-wrapper,
.content-wrapper button,
.content-wrapper input,
.content-wrapper table {
    font-family: "Segoe UI", Arial, sans-serif !important;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 991px) {

    .content {
        padding: 16px !important;
    }

    .odyssey-occupancy-card {
        gap: 40px !important;
    }

    .panel-body-Split-Row {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

@media (max-width: 767px) {

    .odyssey-occupancy-card {
        flex-direction: column !important;
        gap: 22px !important;
    }

    .btnCustome {
        margin-bottom: 12px !important;
    }
}

/* ODYSSEY DASHBOARD VISUAL V3 END */


/* ODYSSEY DASHBOARD V4 START */


/* Occupancy Overview */

.odyssey-overview-heading {
    display:flex;
    align-items:center;
    gap:9px;
    font-size:17px !important;
    font-weight:600 !important;
    margin:0 0 12px !important;
}

.odyssey-overview-heading i {
    color:#7030A0;
}

.odyssey-overview-count {
    margin-left:auto;
    color:#7030A0;
    font-size:16px;
    font-weight:700;
}


.odyssey-occupancy-card {
    display:grid !important;
    grid-template-columns:1fr 1.1fr 1fr !important;
    gap:35px !important;
    align-items:center !important;
    min-height:260px !important;
    padding:30px 44px !important;
}

.odyssey-room-count {
    font-size:35px;
    line-height:1;
    font-weight:700;
    color:#282131;
}

.odyssey-room-count span {
    color:#746c78;
    font-size:21px;
}

.odyssey-room-count-label {
    margin-top:10px;
    font-size:14px;
    color:#423a47;
}

.odyssey-mini-progress {
    width:100%;
    max-width:180px;
    height:7px;
    margin-top:24px;
    background:#ece8ef;
    border-radius:20px;
    overflow:hidden;
}

.odyssey-mini-progress-value {
    height:100%;
    background:#7030A0;
    border-radius:20px;
}

.odyssey-mini-progress-label {
    margin-top:7px;
    font-size:12px;
    color:#756c7a;
}

.odyssey-occupancy-centre {
    display:flex;
    justify-content:center;
    align-items:center;
}

.odyssey-occupancy-ring {
    --size:180px !important;
}

.odyssey-occupancy-ring::after {
    inset:16px !important;
}

.odyssey-occupancy-summary {
    min-width:180px !important;
}

.odyssey-occupancy-stat {
    padding:10px 0 !important;
}

.odyssey-stat-value {
    font-size:25px !important;
}

.odyssey-total-label {
    margin-top:14px !important;
    padding-top:15px !important;
    border-top:1px solid #ece7ef !important;
    display:flex !important;
    justify-content:space-between !important;
}


/* Modern panel headings */

.odyssey-section-title {
    background:transparent !important;
    color:#29222f !important;
    text-align:left !important;
    padding:0 !important;
    font-size:17px !important;
    font-weight:600 !important;
    line-height:24px !important;
}

.odyssey-section-title i {
    color:#7030A0;
    margin-right:7px;
}

.odyssey-section-title::after {
    content:"";
    display:block;
    width:32px;
    height:3px;
    margin-top:9px;
    background:#7030A0;
    border-radius:4px;
}


/* Quick Access */

.panel-body-Split-Row:first-of-type .panel-body {
    display:grid !important;
    grid-template-columns:repeat(3,1fr) !important;
    gap:14px !important;
    padding:22px !important;
}

.panel-body-Split-Row:first-of-type .panel-body > .row {
    display:contents !important;
}

.panel-body-Split-Row:first-of-type .panel-body > br {
    display:none !important;
}

.panel-body-Split-Row:first-of-type .panel-body .row > div {
    width:auto !important;
    float:none !important;
    padding:0 !important;
}

.panel-body-Split-Row:first-of-type .panel-body .row > div:empty {
    display:none !important;
}

.panel-body-Split-Row:first-of-type .btnCustome {
    width:100% !important;
    height:82px !important;
    min-height:82px !important;
    margin:0 !important;
    display:flex !important;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.panel-body-Split-Row:first-of-type .btnCustome br {
    display:none !important;
}

.panel-body-Split-Row:first-of-type .btnCustome i {
    margin:0 0 8px !important;
}


/* DataTables / Excel */

.dt-button,
button.dt-button,
a.dt-button {
    background:#fff !important;
    border:1px solid #dcd4e1 !important;
    color:#403647 !important;
    border-radius:7px !important;
    box-shadow:none !important;
    padding:7px 12px !important;
    font-size:12px !important;
}

.dt-button:hover,
button.dt-button:hover {
    background:#f8f5fa !important;
    border-color:#bda7cc !important;
    color:#7030A0 !important;
}

.buttons-excel::before {
    content:"\f1c3";
    font-family:FontAwesome;
    margin-right:7px;
    color:#278654;
}


/* Sidebar Property */

.odyssey-sidebar-property {
    margin:30px 14px 18px;
    padding:14px;
    background:rgba(255,255,255,.055);
    border:1px solid rgba(255,255,255,.07);
    border-radius:9px;
}

.odyssey-sidebar-property-label {
    margin-bottom:9px;
    color:#9b90a5;
    text-transform:uppercase;
    letter-spacing:.4px;
    font-size:9px;
}

.odyssey-sidebar-property-row {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
}

.odyssey-sidebar-property-name {
    max-width:125px;
    color:#fff;
    font-weight:600;
    font-size:12px;
    line-height:1.35;
}

.odyssey-sidebar-property-id {
    margin-top:4px;
    color:#aaa0b2;
    font-size:10px;
}

.odyssey-sidebar-property-icon {
    width:36px;
    height:36px;
    flex:0 0 36px;
    border-radius:7px;
    background:rgba(112,48,160,.28);
    color:#c9a8dd;
    display:flex;
    align-items:center;
    justify-content:center;
}


/* Pending Payments tools */

.panel-heading.box-header .box-tools {
    top:13px !important;
    right:12px !important;
}

.panel-heading.box-header .box-tools i {
    color:#807687 !important;
}


/* Responsive */

@media (max-width:900px) {

    .odyssey-occupancy-card {
        grid-template-columns:1fr !important;
        text-align:center;
    }

    .odyssey-mini-progress {
        margin-left:auto;
        margin-right:auto;
    }

    .panel-body-Split-Row:first-of-type .panel-body {
        grid-template-columns:1fr 1fr !important;
    }
}

@media (max-width:600px) {

    .panel-body-Split-Row:first-of-type .panel-body {
        grid-template-columns:1fr !important;
    }
}


/* ODYSSEY DASHBOARD V4 END */


/* ODYSSEY QUICK ACCESS FINAL START */

.odyssey-quick-section .panel-body {
    padding:22px !important;
}

.odyssey-quick-grid {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:14px;
}

.odyssey-quick-btn {
    min-height:88px;
    width:100%;
    border:1px solid #e8e1ed;
    border-radius:10px;
    background:#ffffff;
    color:#302836;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:14px;
    padding:14px 18px;
    font-family:"Segoe UI",Arial,sans-serif;
    font-size:12px;
    font-weight:600;
    text-align:left;
    outline:none;
    box-shadow:0 2px 8px rgba(43,28,53,.045);
    transition:
        border-color .15s ease,
        box-shadow .15s ease,
        transform .15s ease,
        background .15s ease;
}

.odyssey-quick-btn:hover {
    background:#faf8fc;
    border-color:#c9b3d8;
    box-shadow:0 6px 16px rgba(82,43,109,.10);
    transform:translateY(-2px);
}

.odyssey-quick-btn:focus {
    border-color:#a67fbe;
    box-shadow:0 0 0 3px rgba(112,48,160,.09);
}

.odyssey-quick-icon {
    width:42px;
    height:42px;
    flex:0 0 42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:11px;
    background:#f1e9f7;
    color:#7030A0;
}

.odyssey-quick-icon i {
    margin:0 !important;
    font-size:21px !important;
    color:#7030A0 !important;
}

.odyssey-quick-btn span:last-child {
    line-height:1.3;
}


/* Sidebar card visibility */

.odyssey-sidebar-property {
    margin-top:28px !important;
}


/* Responsive quick actions */

@media (max-width:900px) {

    .odyssey-quick-grid {
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media (max-width:600px) {

    .odyssey-quick-grid {
        grid-template-columns:1fr;
    }
}

/* ODYSSEY QUICK ACCESS FINAL END */




/* ODYSSEY QUICK GRID WIDTH FIX START */

/*
   The legacy dashboard CSS was also applying grid layout
   to the parent panel-body. The new odyssey-quick-grid must
   own the grid layout itself.
*/

.odyssey-quick-section .panel-body {
    display: block !important;
    width: 100% !important;
    padding: 22px !important;
}

.odyssey-quick-section .odyssey-quick-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

.odyssey-quick-section .odyssey-quick-btn {
    width: 100% !important;
    min-width: 0 !important;
    height: 88px !important;
    min-height: 88px !important;
}

@media (max-width: 900px) {
    .odyssey-quick-section .odyssey-quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 600px) {
    .odyssey-quick-section .odyssey-quick-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ODYSSEY QUICK GRID WIDTH FIX END */




/* ODYSSEY QUICK ACCESS PARENT FIX START */

/*
   Override the older higher-specificity legacy rule:
   .panel-body-Split-Row:first-of-type .panel-body
*/

.panel-body-Split-Row.odyssey-quick-section:first-of-type .panel-body {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    padding: 22px !important;
}

.panel-body-Split-Row.odyssey-quick-section:first-of-type .odyssey-quick-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: 100% !important;
    max-width: none !important;
    gap: 14px !important;
    margin: 0 !important;
}

.panel-body-Split-Row.odyssey-quick-section:first-of-type .odyssey-quick-btn {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
}

@media (max-width: 900px) {
    .panel-body-Split-Row.odyssey-quick-section:first-of-type .odyssey-quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 600px) {
    .panel-body-Split-Row.odyssey-quick-section:first-of-type .odyssey-quick-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ODYSSEY QUICK ACCESS PARENT FIX END */

