@charset "UTF-8"; /* ========================================================================= Easy Hotel – Admin Dashboard Scoped under .eshb-dashboard-wrap so nothing leaks to other admin pages. ========================================================================= */ .eshb-dashboard-wrap { --eshb-d-bg: #f4f5f8; --eshb-d-card: #ffffff; --eshb-d-navy1: #143055; --eshb-d-navy2: #0b2138; --eshb-d-blue: #3b62f6; --eshb-d-blue-soft: #e7edff; --eshb-d-text: #1f2a44; --eshb-d-muted: #8a93a6; --eshb-d-border: #eef0f4; --eshb-d-green: #1faa5b; --eshb-d-red: #e8536b; --eshb-d-amber: #f0a020; --eshb-d-radius: 14px; --eshb-d-shadow: 0 6px 24px rgba(20, 33, 61, 0.06); margin: 10px 20px 0 2px; color: var(--eshb-d-text); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; } .eshb-dashboard-wrap * { box-sizing: border-box; } .eshb-dashboard-wrap .eshb-dash-shell { background: var(--eshb-d-bg); border-radius: 16px; overflow: hidden; } .eshb-dashboard-wrap { /* ------------------------------------------------------------- content */ } .eshb-dashboard-wrap .eshb-dash-content { min-width: 0; padding: 20px 24px 28px; } .eshb-dashboard-wrap { /* --------------------------------------------------------------- stats */ } .eshb-dashboard-wrap .eshb-dash-stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-bottom: 22px; } .eshb-dashboard-wrap .eshb-dash-stat-card { background: var(--eshb-d-card); border-radius: var(--eshb-d-radius); box-shadow: var(--eshb-d-shadow); padding: 18px; display: flex; gap: 14px; align-items: flex-start; } .eshb-dashboard-wrap .eshb-dash-stat-icon { flex: 0 0 46px; width: 46px; height: 46px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; } .eshb-dashboard-wrap .eshb-dash-stat-icon .dashicons { font-size: 22px; width: 22px; height: 22px; } .eshb-dashboard-wrap .eshb-dash-stat-icon.accent-blue { background: #e7edff; color: #3b62f6; } .eshb-dashboard-wrap .eshb-dash-stat-icon.accent-orange { background: #fff0db; color: #f0a020; } .eshb-dashboard-wrap .eshb-dash-stat-icon.accent-green { background: #def2e4; color: #1faa5b; } .eshb-dashboard-wrap .eshb-dash-stat-icon.accent-purple { background: #efe8fd; color: #7b5cf0; } .eshb-dashboard-wrap .eshb-dash-stat-icon.accent-teal { background: #e2eefc; color: #3a93e0; } .eshb-dashboard-wrap .eshb-dash-stat-icon.accent-red { background: #fde7ea; color: #e8536b; } .eshb-dashboard-wrap .eshb-dash-stat-icon.accent-gray { background: #eef0f4; color: #6b7385; } .eshb-dashboard-wrap .eshb-dash-stat-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; } .eshb-dashboard-wrap .eshb-dash-stat-label { font-size: 13px; color: var(--eshb-d-muted); } .eshb-dashboard-wrap .eshb-dash-stat-value { font-size: 26px; font-weight: 700; color: var(--eshb-d-text); line-height: 1.2; } .eshb-dashboard-wrap .eshb-dash-stat-delta { display: inline-flex; align-items: center; gap: 2px; font-size: 12px; font-weight: 500; min-height: 16px; } .eshb-dashboard-wrap .eshb-dash-stat-delta .dashicons { font-size: 14px; width: 14px; height: 14px; } .eshb-dashboard-wrap .eshb-dash-stat-delta.is-up { color: var(--eshb-d-green); } .eshb-dashboard-wrap .eshb-dash-stat-delta.is-down { color: var(--eshb-d-red); } .eshb-dashboard-wrap .eshb-dash-stat-delta.is-muted { color: var(--eshb-d-muted); } .eshb-dashboard-wrap { /* ---------------------------------------------------------------- grid */ } .eshb-dashboard-wrap .eshb-dash-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; align-items: stretch; grid-template-areas: "cal cal cal cal cal qa qa qa tr tr tr tr" "rb rb rb rb rb rb rb rb st st st st"; } .eshb-dashboard-wrap .eshb-card-calendar { grid-area: cal; } .eshb-dashboard-wrap .eshb-card-actions { grid-area: qa; } .eshb-dashboard-wrap .eshb-card-trend { grid-area: tr; } .eshb-dashboard-wrap .eshb-card-recent { grid-area: rb; } .eshb-dashboard-wrap .eshb-dash-card-stack { grid-area: st; display: flex; flex-direction: column; gap: 18px; } .eshb-dashboard-wrap { /* Cards stretch to fill their grid cell; content grows to fill the card so no blank white space is left at the bottom. */ } .eshb-dashboard-wrap .eshb-dash-card { background: var(--eshb-d-card); border-radius: var(--eshb-d-radius); box-shadow: var(--eshb-d-shadow); padding: 20px; display: flex; flex-direction: column; } .eshb-dashboard-wrap .eshb-dash-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; } .eshb-dashboard-wrap .eshb-dash-card-head h3 { margin: 0; font-size: 16px; font-weight: 600; color: var(--eshb-d-text); } .eshb-dashboard-wrap .eshb-dash-card-head h3 small { font-weight: 400; font-size: 13px; color: var(--eshb-d-muted); } .eshb-dashboard-wrap .eshb-dash-link { font-size: 13px; color: var(--eshb-d-blue); text-decoration: none; font-weight: 500; } .eshb-dashboard-wrap .eshb-dash-link:hover { text-decoration: underline; } .eshb-dashboard-wrap .eshb-dash-dropdown { position: relative; } .eshb-dashboard-wrap .eshb-dash-pill { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; color: #5b6577; background: #fff; border: 1px solid var(--eshb-d-border); border-radius: 8px; padding: 6px 10px; cursor: pointer; line-height: 1.4; transition: border-color 0.15s ease, background 0.15s ease; } .eshb-dashboard-wrap .eshb-dash-pill:hover { border-color: #d6dcef; } .eshb-dashboard-wrap .eshb-dash-pill .dashicons { font-size: 14px; width: 14px; height: 14px; transition: transform 0.15s ease; } .eshb-dashboard-wrap .eshb-dash-dropdown-menu { position: absolute; top: calc(100% + 6px); right: 0; min-width: 130px; margin: 0; padding: 6px; list-style: none; background: #fff; border: 1px solid var(--eshb-d-border); border-radius: 10px; box-shadow: 0 10px 30px rgba(20, 33, 61, 0.12); opacity: 0; visibility: hidden; transform: translateY(-4px); transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s; z-index: 20; } .eshb-dashboard-wrap .eshb-dash-dropdown-menu li { margin: 0; } .eshb-dashboard-wrap .eshb-dash-dropdown-menu button { display: block; width: 100%; text-align: left; border: none; background: transparent; color: #4a5468; font-size: 13px; padding: 8px 12px; border-radius: 7px; cursor: pointer; } .eshb-dashboard-wrap .eshb-dash-dropdown-menu button:hover { background: var(--eshb-d-bg); } .eshb-dashboard-wrap .eshb-dash-dropdown-menu button.is-active { background: var(--eshb-d-blue-soft); color: var(--eshb-d-blue); font-weight: 600; } .eshb-dashboard-wrap .eshb-dash-dropdown.is-open .eshb-dash-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); } .eshb-dashboard-wrap .eshb-dash-dropdown.is-open .eshb-dash-pill .dashicons { transform: rotate(180deg); } .eshb-dashboard-wrap { /* ------------------------------------------------------------ calendar */ } .eshb-dashboard-wrap .eshb-dash-cal-legend { display: flex; gap: 14px; } .eshb-dashboard-wrap .eshb-dash-cal-legend .legend { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: #5b6577; } .eshb-dashboard-wrap .eshb-dash-cal-legend .legend::before { content: ""; width: 11px; height: 11px; border-radius: 3px; display: inline-block; } .eshb-dashboard-wrap .eshb-dash-cal-legend .legend.booked::before { background: #5ec27e; } .eshb-dashboard-wrap .eshb-dash-cal-legend .legend.available::before { background: #e3e7ee; } .eshb-dashboard-wrap .eshb-dash-cal-legend .legend.blocked::before { background: #ef8b8b; } .eshb-dashboard-wrap .eshb-dash-cal-nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 8px; } .eshb-dashboard-wrap .eshb-dash-cal-nav .eshb-cal-title { font-size: 15px; font-weight: 600; } .eshb-dashboard-wrap .eshb-dash-cal-nav button { border: none; background: transparent; cursor: pointer; color: #6b7385; padding: 4px; border-radius: 6px; line-height: 0; } .eshb-dashboard-wrap .eshb-dash-cal-nav button:hover { background: var(--eshb-d-bg); } .eshb-dashboard-wrap .eshb-dash-cal-nav button .dashicons, .eshb-dashboard-wrap .eshb-dash-cal-nav button.dashicons { font-size: 18px; } .eshb-dashboard-wrap .eshb-dash-calendar { flex: 1 1 auto; display: flex; flex-direction: column; } .eshb-dashboard-wrap .eshb-dash-calendar .eshb-cal-row { display: grid; grid-template-columns: repeat(7, 1fr); } .eshb-dashboard-wrap .eshb-dash-calendar .eshb-cal-row:not(.eshb-cal-head) { flex: 1 1 auto; } .eshb-dashboard-wrap .eshb-dash-calendar .eshb-cal-head .eshb-cal-cell { font-size: 12px; color: var(--eshb-d-muted); font-weight: 500; padding: 6px 0; text-align: center; min-height: auto; } .eshb-dashboard-wrap .eshb-dash-calendar .eshb-cal-cell { min-height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid #f1f3f7; margin: -0.5px; font-size: 13px; position: relative; } .eshb-dashboard-wrap .eshb-dash-calendar .eshb-cal-cell.is-muted { color: #c4cad6; background: #fcfcfd; } .eshb-dashboard-wrap .eshb-dash-calendar .eshb-cal-cell.is-day .eshb-cal-num { width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; border-radius: 8px; } .eshb-dashboard-wrap .eshb-dash-calendar .eshb-cal-cell.is-booked { background: #def2e4; } .eshb-dashboard-wrap .eshb-dash-calendar .eshb-cal-cell.is-booked .eshb-cal-num { color: #1f8a4c; font-weight: 600; } .eshb-dashboard-wrap .eshb-dash-calendar .eshb-cal-cell.is-blocked { background: #fde2e2; } .eshb-dashboard-wrap .eshb-dash-calendar .eshb-cal-cell.is-blocked .eshb-cal-num { color: #d65656; font-weight: 600; } .eshb-dashboard-wrap .eshb-dash-calendar .eshb-cal-cell.is-today .eshb-cal-num { background: var(--eshb-d-blue); color: #fff; font-weight: 600; } .eshb-dashboard-wrap { /* ------------------------------------------------------- quick actions */ } .eshb-dashboard-wrap .eshb-dash-actions { display: flex; flex-direction: column; justify-content: space-between; gap: 7px; flex: 1 1 auto; } .eshb-dashboard-wrap .eshb-dash-action { display: flex; align-items: center; gap: 12px; padding: 8px 10px; border: 1px solid var(--eshb-d-border); border-radius: 10px; text-decoration: none; color: var(--eshb-d-text); transition: border-color 0.15s ease, box-shadow 0.15s ease; } .eshb-dashboard-wrap .eshb-dash-action:hover { border-color: #d6dcef; box-shadow: 0 4px 12px rgba(20, 33, 61, 0.05); } .eshb-dashboard-wrap .eshb-dash-action .eshb-dash-action-icon { flex: 0 0 30px; width: 30px; height: 30px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; font-size: 18px; } .eshb-dashboard-wrap .eshb-dash-action .eshb-dash-action-icon.accent-blue { background: #e7edff; color: #3b62f6; } .eshb-dashboard-wrap .eshb-dash-action .eshb-dash-action-icon.accent-green { background: #def2e4; color: #1faa5b; } .eshb-dashboard-wrap .eshb-dash-action .eshb-dash-action-icon.accent-purple { background: #efe8fd; color: #7b5cf0; } .eshb-dashboard-wrap .eshb-dash-action .eshb-dash-action-icon.accent-orange { background: #fff0db; color: #f0a020; } .eshb-dashboard-wrap .eshb-dash-action .eshb-dash-action-icon.accent-red { background: #fde7ea; color: #e8536b; } .eshb-dashboard-wrap .eshb-dash-action .eshb-dash-action-icon.accent-gray { background: #eef0f4; color: #6b7385; } .eshb-dashboard-wrap .eshb-dash-action .eshb-dash-action-label { flex: 1 1 auto; font-size: 14px; font-weight: 500; } .eshb-dashboard-wrap .eshb-dash-action .eshb-dash-action-arrow { color: #b6bdca; font-size: 16px; } .eshb-dashboard-wrap { /* --------------------------------------------------------------- trend */ } .eshb-dashboard-wrap .eshb-dash-trend { width: 100%; flex: 1 1 auto; display: flex; min-height: 220px; } .eshb-dashboard-wrap .eshb-dash-trend .eshb-trend-svg { width: 100%; height: 100%; min-height: 220px; display: block; } .eshb-dashboard-wrap .eshb-dash-trend .eshb-trend-grid { stroke: #eef1f6; stroke-width: 1; } .eshb-dashboard-wrap .eshb-dash-trend .eshb-trend-axis { fill: #9aa3b4; font-size: 10px; } .eshb-dashboard-wrap .eshb-dash-trend .eshb-trend-line { stroke: #3b62f6; stroke-width: 2.5; stroke-linejoin: round; stroke-linecap: round; } .eshb-dashboard-wrap { /* ------------------------------------------------------------- recent */ } .eshb-dashboard-wrap .eshb-dash-table-wrap { overflow-x: auto; flex: 1 1 auto; } .eshb-dashboard-wrap .eshb-dash-table { width: 100%; height: 100%; border-collapse: collapse; } .eshb-dashboard-wrap .eshb-dash-table thead th { text-align: left; font-size: 12px; font-weight: 600; color: var(--eshb-d-muted); padding: 10px 14px; border-bottom: 1px solid var(--eshb-d-border); white-space: nowrap; } .eshb-dashboard-wrap .eshb-dash-table tbody td { padding: 14px; font-size: 13px; color: #4a5468; border-bottom: 1px solid #f4f6fa; white-space: nowrap; } .eshb-dashboard-wrap .eshb-dash-table tbody tr:last-child td { border-bottom: none; } .eshb-dashboard-wrap .eshb-dash-table tbody tr:hover td { background: #fafbff; } .eshb-dashboard-wrap .eshb-dash-table .eshb-dash-booking-id { color: var(--eshb-d-blue); text-decoration: none; font-weight: 600; } .eshb-dashboard-wrap .eshb-dash-table .eshb-dash-booking-id:hover { text-decoration: underline; } .eshb-dashboard-wrap .eshb-dash-table .eshb-dash-empty { text-align: center; color: var(--eshb-d-muted); padding: 28px 14px; } .eshb-dashboard-wrap .eshb-dash-badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; } .eshb-dashboard-wrap .eshb-dash-badge.status-completed, .eshb-dashboard-wrap .eshb-dash-badge.status-confirmed { background: #e4f7ec; color: #16a34a; } .eshb-dashboard-wrap .eshb-dash-badge.status-pending, .eshb-dashboard-wrap .eshb-dash-badge.status-deposit-payment, .eshb-dashboard-wrap .eshb-dash-badge.status-on-hold { background: #fff3df; color: #d98a00; } .eshb-dashboard-wrap .eshb-dash-badge.status-processing { background: #e7edff; color: #3b62f6; } .eshb-dashboard-wrap .eshb-dash-badge.status-cancelled, .eshb-dashboard-wrap .eshb-dash-badge.status-refunded, .eshb-dashboard-wrap .eshb-dash-badge.status-failed { background: #fde7ea; color: #ef4444; } .eshb-dashboard-wrap { /* --------------------------------------------------------------- rooms */ } .eshb-dashboard-wrap .eshb-dash-rooms { display: flex; flex-direction: column; justify-content: center; gap: 22px; flex: 1 1 auto; } .eshb-dashboard-wrap .eshb-dash-room { display: flex; align-items: center; gap: 16px; } .eshb-dashboard-wrap .eshb-dash-room .eshb-dash-room-name { flex: 0 0 130px; width: 130px; display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--eshb-d-text); } .eshb-dashboard-wrap .eshb-dash-room .eshb-dash-room-icon { display: inline-flex; align-items: center; justify-content: center; color: var(--eshb-d-blue); flex: 0 0 auto; } .eshb-dashboard-wrap .eshb-dash-room .eshb-dash-room-icon svg { width: 20px; height: 20px; } .eshb-dashboard-wrap .eshb-dash-room .eshb-dash-room-label { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .eshb-dashboard-wrap .eshb-dash-room .eshb-dash-room-bar { flex: 1 1 auto; height: 9px; border-radius: 6px; background: #edf0f4; overflow: hidden; } .eshb-dashboard-wrap .eshb-dash-room .eshb-dash-room-bar span { display: block; height: 100%; border-radius: 6px; } .eshb-dashboard-wrap .eshb-dash-room .eshb-dash-room-bar span.is-high { background: #4cbf6f; } .eshb-dashboard-wrap .eshb-dash-room .eshb-dash-room-bar span.is-mid { background: #f0a020; } .eshb-dashboard-wrap .eshb-dash-room .eshb-dash-room-bar span.is-low { background: #e8536b; } .eshb-dashboard-wrap .eshb-dash-room .eshb-dash-room-count { flex: 0 0 auto; font-size: 13px; color: var(--eshb-d-muted); white-space: nowrap; text-align: right; } .eshb-dashboard-wrap .eshb-dash-room .eshb-dash-room-count .eshb-dash-room-count-num { color: var(--eshb-d-text); font-weight: 600; } .eshb-dashboard-wrap { /* -------------------------------------------------------------- upsell */ } .eshb-dashboard-wrap .eshb-dash-upsell { background: linear-gradient(135deg, #f1ecff 0%, #eaf0ff 100%); text-align: left; position: relative; flex: 1 1 auto; justify-content: center; } .eshb-dashboard-wrap .eshb-dash-upsell .eshb-dash-upsell-lock { color: #8a78d6; font-size: 22px; margin-bottom: 6px; } .eshb-dashboard-wrap .eshb-dash-upsell h4 { margin: 0 0 8px; font-size: 16px; color: var(--eshb-d-text); } .eshb-dashboard-wrap .eshb-dash-upsell p { margin: 0 0 16px; font-size: 13px; line-height: 1.6; color: #5b6577; } .eshb-dashboard-wrap .eshb-dash-upsell .eshb-dash-upsell-btn { display: inline-block; background: #7b5cf0; color: #fff; text-decoration: none; font-weight: 600; font-size: 13px; padding: 10px 18px; border-radius: 8px; width: fit-content; } .eshb-dashboard-wrap .eshb-dash-upsell .eshb-dash-upsell-btn:hover { background: #6a49e0; } /* --------------------------------------------------------------- responsive */ @media (max-width: 1280px) { .eshb-dashboard-wrap .eshb-dash-stats { grid-template-columns: repeat(3, 1fr); } .eshb-dashboard-wrap .eshb-dash-grid { grid-template-areas: "cal cal cal cal cal cal qa qa qa qa qa qa" "tr tr tr tr tr tr tr tr tr tr tr tr" "rb rb rb rb rb rb rb rb rb rb rb rb" "st st st st st st st st st st st st"; } } @media (max-width: 782px) { .eshb-dashboard-wrap { margin: 10px 10px 0; } .eshb-dashboard-wrap .eshb-dash-content { padding: 16px; } .eshb-dashboard-wrap .eshb-dash-stats { grid-template-columns: repeat(2, 1fr); } .eshb-dashboard-wrap .eshb-dash-grid { grid-template-columns: 100%; grid-template-areas: "cal" "qa" "tr" "rb" "st"; } } :root { --eshb-primary-color: #ab8965; --eshb-success-color: #1ec734; --eshb-danger-color: #e41749; --eshb-primary-color-rgb: 171, 137, 101; --eshb-dark-color: #181818; --eshb-white-color: #ffffff; --eshb-border-color: #ab8965; } .eshb-text-danger { color: var(--eshb-danger-color); } .eshb-text-success { color: var(--eshb-success-color); } .eshb_accomodation_page_easy-hotel-settings .notice { display: none !important; } .eshb_accomodation_page_easy-hotel-settings .csf-theme-light .csf-container { border: none !important; border-radius: 8px; -webkit-box-shadow: 0 4px 40px rgba(0, 0, 0, 0.05); box-shadow: 0 4px 40px rgba(0, 0, 0, 0.05); overflow: hidden; } .eshb_accomodation_page_easy-hotel-settings .csf-theme-light .csf-container .csf-header-left { background: url(../img/fav.svg); background-repeat: no-repeat; padding-left: 40px; padding-bottom: 10px; } .csf-field input, .csf-field select, .csf-field textarea { border-color: #e1dede; } .csf-field .wp-picker-container { width: auto; } .csf-field .wp-picker-container .wp-color-result.button { width: 140px; } .csf-field.hidden-metabox { display: none; } .csf-field.hide-add-new .csf-repeater-add { display: none; } .csf-field.hide-add-new .csf-repeater-helper { display: none; } .has-inline-repeater-fields .csf-repeater-content { display: flex; gap: 16px; } .has-inline-repeater-fields .csf-repeater-content > .csf-field { display: flex; flex-direction: column; } @media only screen and (max-width: 1024px) { .has-inline-repeater-fields .csf-repeater-content > .csf-field { display: block; } } .has-inline-repeater-fields .csf-repeater-content > .csf-field .csf-title { width: auto; } .has-inline-repeater-fields .csf-repeater-content > .csf-field .csf-fieldset { width: auto; } @media only screen and (max-width: 1024px) { .has-inline-repeater-fields .csf-repeater-content { display: block; } } .csf-field-heading-sm { font-size: 15px; } .eshb-admin-notice { background-color: #fff3cd; color: #856404; border: 1px solid #ffeeba; border-radius: 4px; font-family: Arial, sans-serif; margin-right: 20px; padding: 10px; } .eshb-admin-notice.eshb-admin-notice-large { font-size: 20px; padding: 40px; margin-top: 20px; } .inline-group-fields .csf-repeater-wrapper .csf-repeater-item { display: flex; } .inline-group-fields .csf-repeater-wrapper .csf-repeater-item .csf-repeater-content { display: flex; } .inline-group-fields .csf-repeater-wrapper .csf-repeater-item .csf-repeater-content .csf-field { display: flex; flex-direction: column; } .inline-group-fields .csf-repeater-wrapper .csf-repeater-item .csf-repeater-content .csf-title { width: 100%; } .inline-group-fields .csf-repeater-wrapper .csf-repeater-item .csf-repeater-helper { width: auto; align-content: center; } .easy-hotel-plugin-settings.csf-theme-light .csf-container { max-width: 1350px; margin: 0 auto; } .easy-hotel-plugin-settings.csf-theme-light .csf-header-inner, .easy-hotel-plugin-settings.csf-theme-light .csf-nav-inline { border-color: #f1f1f1; } .easy-hotel-plugin-settings.csf-theme-light .csf-header-inner h1, .easy-hotel-plugin-settings.csf-theme-light .csf-nav-inline h1 { color: #222; font-weight: 600; } .easy-hotel-plugin-settings.csf-theme-light .csf-wrapper { overflow: hidden; } .easy-hotel-plugin-settings.csf-theme-light .csf-nav-inline { padding: 30px; background: #fff; } .easy-hotel-plugin-settings.csf-theme-light .csf-nav-inline ul li { border-radius: 3px; overflow: hidden; margin-right: 10px; margin-bottom: 10px; } .easy-hotel-plugin-settings.csf-theme-light .csf-nav-inline ul li a { color: #222; background-color: #eaeaea; padding: 11px 30px; border: none !important; } .easy-hotel-plugin-settings.csf-theme-light .csf-nav-inline ul li a:hover { color: #fff; background-color: #4360ef; } .easy-hotel-plugin-settings.csf-theme-light .csf-nav-inline ul li .csf-active { color: #fff; background-color: #4360ef; } .easy-hotel-plugin-settings.csf-theme-light .csf-buttons .button { padding: 6px 30px; border: none !important; } .easy-hotel-plugin-settings.csf-theme-light .csf-buttons .button.csf-top-save { background: #4360ef; } .eshb-notice { padding: 10px; } .eshb-notice.notice { border-left-color: #576AE3 !important; padding: 10px; } .eshb-notice { padding: 5px !important; display: flex; flex-direction: row; justify-content: flex-start; align-items: center; } .eshb-notice .notice-logo { padding: 0.8rem; max-width: 110px; max-height: 110px; } .eshb-notice .notice-right-container { margin: 0.7rem 0.8rem 0.8rem; } .eshb-notice-action-buttons { margin-top: 5px; } .eshb-notice-button { background-color: #576AE3; color: #fff; display: inline-block; text-decoration: none; font-size: 13px; margin: 0; padding: 6px 10px; cursor: pointer; border-width: 1px; border-style: solid; -webkit-appearance: none; border-radius: 3px; white-space: nowrap; box-sizing: border-box; } .eshb-notice-button:hover { color: #fff; } .eshb-notice-action-buttons { display: flex; align-items: center; gap: 5px; } .eshb-notice-widget-inner .feature-image { max-width: 100%; } .eshb-notice-widget-inner .eshb-notice-button { background-color: transparent; } #eshb-notice-emicon_pro_plugin_notice .eshb-notice-action-buttons { margin-top: 10px; } .eshb_easy_hotel_usage_callback { border: 1px solid #ededed; border-radius: 10px; margin-bottom: 50px; padding: 30px; } .eshb_easy_hotel_help_support_callback { margin-bottom: 50px; } .eshb_easy_hotel_help_support_callback .help-col-container { display: flex; gap: 30px; } .eshb_easy_hotel_help_support_callback .help-col-container .help-col { width: 44%; border: 1px solid #ededed; padding: 30px; border-radius: 20px; box-shadow: 2px 2px 30px #ededed; } @media only screen and (max-width: 1024px) { .eshb_easy_hotel_help_support_callback .help-col-container .help-col { width: 100%; } } .eshb_easy_hotel_help_support_callback .eshb-youtube-playlist { display: flex; max-width: 100%; flex-wrap: wrap; gap: 20px; } .eshb_easy_hotel_help_support_callback .eshb-youtube-playlist .eshb-video-player { flex: 2 1 590px; min-width: 500px; } .eshb_easy_hotel_help_support_callback .eshb-youtube-playlist .eshb-video-player iframe { width: 100%; height: 450px; border: none; } .eshb_easy_hotel_help_support_callback .eshb-youtube-playlist .eshb-playlist-sidebar { flex: 1 1 300px; min-width: 250px; max-height: 450px; overflow-y: auto; background: #f9f9f9; border: 1px solid #ddd; } .eshb_easy_hotel_help_support_callback .eshb-youtube-playlist .eshb-playlist-sidebar h3 { margin: 0; padding: 10px; background: #eee; font-size: 16px; font-weight: bold; } .eshb_easy_hotel_help_support_callback .eshb-youtube-playlist .eshb-playlist-sidebar .eshb-playlist-item { display: flex; align-items: flex-start; gap: 10px; padding: 8px; border: none; background: white; cursor: pointer; box-shadow: 3px 3px 3px rgba(119, 119, 119, 0.1607843137); transition: background 0.2s ease; } .eshb_easy_hotel_help_support_callback .eshb-youtube-playlist .eshb-playlist-sidebar .eshb-playlist-item:hover { background: #f0f0f0; } .eshb_easy_hotel_help_support_callback .eshb-youtube-playlist .eshb-playlist-sidebar .eshb-playlist-item img { width: 120px !important; height: 68px; object-fit: cover; } .eshb_easy_hotel_help_support_callback .eshb-youtube-playlist .eshb-playlist-sidebar .eshb-playlist-item .eshb-video-title { flex: 1; font-size: 14px; font-weight: 500; } .order-status { display: inline-flex; line-height: 2.5em; color: #454545; background: #e5e5e5; border-radius: 4px; border-bottom: 1px solid rgba(0, 0, 0, 0.05); margin: -0.25em 0; cursor: inherit !important; white-space: nowrap; max-width: 100%; text-transform: capitalize; } .order-status span { margin: 0 1em; overflow: hidden; text-overflow: ellipsis; } .order-status.status-completed { background: #2a962a; color: white; } .order-status.status-on-hold { background: #f8dda7; color: #573b00; } .order-status.status-failed { background: #eba3a3; color: #570000; } .order-status.status-processing { background: #c6e1c6; color: #2c4700; } .order-status.status-trash { background: #eba3a3; color: #550202; } .order-status.status-deposit-payment { background: wheat; } .eshb-themes-addons-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 100px; margin-right: 20px; } @media (max-width: 991px) { .eshb-themes-addons-row { display: block; } } .eshb-themes-addons-row .eshb-addons-action-button { display: inline-flex; align-items: center; gap: 5px; margin-right: 10px; border-radius: 4px; font-size: 14px; font-weight: 500; line-height: 40px; padding: 0 20px; text-decoration: none; border: none; background: #0039b6; color: #fff; } .eshb-themes-addons-row .eshb-addons-action-button.view-all-btn { margin: auto; display: block; width: fit-content; } .eshb-themes-addons-row .eshb-addons-action-button.eshb-action-btn-primary { background-color: rgba(62, 98, 245, 0.1); color: #3e62f5; } .eshb-themes-addons-row .eshb-addons-action-button.eshb-action-btn-primary:hover { color: #ff408c; } .eshb-themes-addons-row .eshb-addons-action-button.eshb-action-btn-secondary { background-color: rgba(255, 64, 140, 0.1); color: #ff408c; } .eshb-themes-addons-row .eshb-addons-action-button.eshb-action-btn-secondary:hover { color: #0066bf; } .eshb-themes-addons-row .eshb-pro-addons-card-group { display: grid; gap: 1em; margin-bottom: 30px; } .eshb-themes-addons-row .eshb-pro-addons-card-group .eshb-pro-addons-card { background-color: #fff; margin: 0; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 5px 5px rgba(173, 180, 210, 0.05); border-radius: 5px; padding: 0; position: relative; overflow: hidden; } .eshb-themes-addons-row .eshb-pro-addons-card-group .eshb-pro-addons-card span.eshb-pro-addons-base { background: #f9f9f9; display: block; font-size: 11px; position: absolute; left: -20px; top: 9px; transform: rotate(-45deg); width: 78px; } .eshb-themes-addons-row .eshb-pro-addons-card-group .eshb-pro-addons-card span.eshb-pro-addons-base span { width: auto; display: block; padding: 2px 10px; color: #fff; text-align: center; } .eshb-themes-addons-row .eshb-pro-addons-card-group .eshb-pro-addons-card span.eshb-pro-addons-base span.eshb-pro-base { background: #93003f; } .eshb-themes-addons-row .eshb-pro-addons-card-group .eshb-pro-addons-card span.eshb-pro-addons-base span.eshb-free-base { background: #f59e0b; } .eshb-themes-addons-row .eshb-pro-addons-card-group .eshb-pro-addons-card .eshb-pro-addons-body { display: flex; gap: 15px; padding: 1.5em; } .eshb-themes-addons-row .eshb-pro-addons-card-group .eshb-pro-addons-card .eshb-pro-addons-body .eshb-pro-addons-thumbnail { overflow: hidden; width: 250px; height: 150px; display: block; text-align: center; border-radius: 4px; } .eshb-themes-addons-row .eshb-pro-addons-card-group .eshb-pro-addons-card .eshb-pro-addons-body .eshb-pro-addons-thumbnail img { width: 100%; height: 100%; object-fit: cover; } .eshb-themes-addons-row .eshb-pro-addons-card-group .eshb-pro-addons-card .eshb-pro-addons-body .eshb-pro-addons-content { width: calc(100% - 245px); display: flex; flex-direction: column; justify-content: center; } .eshb-themes-addons-row .eshb-pro-addons-card-group .eshb-pro-addons-card .eshb-pro-addons-body .eshb-pro-addons-name { margin: 0; } .eshb-themes-addons-row .eshb-pro-addons-card-group .eshb-pro-addons-card .eshb-pro-addons-action { display: flex; align-items: center; } #eshb-license-activator .form-group { display: inline-flex; position: relative; align-items: center; } #eshb-license-activator .form-group button, #eshb-license-activator .form-group input[name=licnese_key] { max-width: 255px; width: 255px; border: 1px solid #c4c4c4; padding: 8px 20px; } #eshb-license-activator .form-group button { max-width: unset; width: unset; line-height: normal; } #eshb-license-activator .form-group .ajax-loader { display: none; position: absolute; right: -45px; } #eshb-license-activator .form-group .ajax-loader img { height: 50px; } body.rtl .csf-content { margin-right: 0; } .eshb-booking-info-calendar { --eshb-calendar-ical-completed-color: #97dfd4b5; --eshb-calendar-completed-color: #cef093; --eshb-calendar-pending-color: #fed24d; --eshb-calendar-blocked-color: #ffd0d0; } .eshb-booking-info-calendar .eshb-calendar-filter { padding: 15px; margin-bottom: 20px; background: #fff; gap: 20px; display: flex; justify-content: space-between; margin-right: 15px; width: auto; position: relative; } @media (max-width: 767px) { .eshb-booking-info-calendar .eshb-calendar-filter { flex-direction: column; } } .eshb-booking-info-calendar .eshb-calendar-filter .eshb-calendar-filter-form { gap: 20px; display: flex; align-items: center; flex-wrap: wrap; } .eshb-booking-info-calendar .eshb-calendar-filter .eshb-calendar-filter-form .eshb-calendar-filter-options { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; } .eshb-booking-info-calendar .eshb-calendar-filter .eshb-calendar-filter-form .eshb-calendar-filter-options #eshb-calendar-filter-period-wrapper { display: flex; align-items: center; gap: 5px; } @media (max-width: 767px) { .eshb-booking-info-calendar .eshb-calendar-filter .eshb-calendar-filter-form .eshb-calendar-filter-options #eshb-calendar-filter-period-wrapper > span { display: none; } } .eshb-booking-info-calendar .eshb-calendar-filter .eshb-calendar-filter-form .eshb-calendar-filter-actions .button:nth-child(1) { margin-right: 5px; } .eshb-booking-info-calendar .eshb-calendar-filter .eshb-calendar-legends { display: flex; gap: 10px; } .eshb-booking-info-calendar .eshb-calendar-filter .eshb-calendar-legends .legend-item { display: flex; flex-direction: column; align-items: center; padding: 0 5px; font-size: 12px; } .eshb-booking-info-calendar .eshb-calendar-filter .eshb-calendar-legends .legend-item::before { position: relative; display: inline-block; width: 15px; height: 15px; margin-right: 2px; top: 3px; content: ""; margin-bottom: 5px; } .eshb-booking-info-calendar .eshb-calendar-filter .eshb-calendar-legends .legend-item.ical-complete::before { background-color: var(--eshb-calendar-ical-completed-color); } .eshb-booking-info-calendar .eshb-calendar-filter .eshb-calendar-legends .legend-item.complete::before { background-color: var(--eshb-calendar-completed-color); } .eshb-booking-info-calendar .eshb-calendar-filter .eshb-calendar-legends .legend-item.pending::before { background-color: var(--eshb-calendar-pending-color); } .eshb-booking-info-calendar .eshb-calendar-filter .eshb-calendar-legends .legend-item.blocked::before { background-color: var(--eshb-calendar-blocked-color); } .eshb-booking-info-calendar .eshb-booking-info-calendar-tables { display: flex; margin-right: 15px; width: auto; position: relative; } .eshb-booking-info-calendar .eshb-booking-info-calendar-tables .eshb-accomodations-dates-table-wrapper { overflow-x: auto; position: relative; max-width: 100%; scroll-behavior: smooth; } .eshb-booking-info-calendar .eshb-booking-info-calendar-tables table { background: #fff; border-collapse: collapse; width: 100%; table-layout: fixed; } .eshb-booking-info-calendar .eshb-booking-info-calendar-tables table.eshb-accomodations-rooms-table { position: absolute; height: calc(100% - 13px); width: 160px; } @media (max-width: 767px) { .eshb-booking-info-calendar .eshb-booking-info-calendar-tables table.eshb-accomodations-rooms-table { height: calc(100% + 3px); } } .eshb-booking-info-calendar .eshb-booking-info-calendar-tables table > thead tr, .eshb-booking-info-calendar .eshb-booking-info-calendar-tables table > tfoot tr { height: 77px; max-height: 77px; } .eshb-booking-info-calendar .eshb-booking-info-calendar-tables table > thead tr th, .eshb-booking-info-calendar .eshb-booking-info-calendar-tables table > tfoot tr th { min-width: 45px; width: 45px; } .eshb-booking-info-calendar .eshb-booking-info-calendar-tables table tr { height: 100%; } .eshb-booking-info-calendar .eshb-booking-info-calendar-tables table th, .eshb-booking-info-calendar .eshb-booking-info-calendar-tables table td { height: inherit; min-width: 40px; border-collapse: collapse; border: 1px solid #e3e3e3; } .eshb-booking-info-calendar .eshb-booking-info-calendar-tables table th { font-size: 12px; } .eshb-booking-info-calendar .eshb-booking-info-calendar-tables table td { height: 45px; } .eshb-booking-info-calendar .eshb-booking-info-calendar-tables table td a { text-decoration: none; } .eshb-booking-info-calendar .eshb-booking-info-calendar-tables table td .room-info { padding: 4px 15px; } .eshb-booking-info-calendar .eshb-booking-info-calendar-tables table td.booking-info-col { vertical-align: baseline; } .eshb-booking-info-calendar .eshb-booking-info-calendar-tables table td.booking-info-col[colspan="1"] { max-width: 40px; min-width: 40px; } .eshb-booking-info-calendar .eshb-booking-info-calendar-tables table td .booking-info { margin: 1px; display: flex; flex-direction: column; align-items: center; padding: 3px 5px; font-size: 12px; } .eshb-booking-info-calendar .eshb-booking-info-calendar-tables table td .booking-info.ical-status-completed { background: var(--eshb-calendar-ical-completed-color); } .eshb-booking-info-calendar .eshb-booking-info-calendar-tables table td .booking-info.status-completed { background: var(--eshb-calendar-completed-color); } .eshb-booking-info-calendar .eshb-booking-info-calendar-tables table td .booking-info.status-blocked { background: var(--eshb-calendar-blocked-color); } .eshb-booking-info-calendar .eshb-booking-info-calendar-tables table td .booking-info.status-pending { background: var(--eshb-calendar-pending-color); } .eshb-booking-info-calendar .eshb-booking-info-calendar-tables table .left-heading { position: sticky; left: 0; z-index: 3; box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1); /* optional for visual effect */ width: 160px; background-color: #fff; } .eshb-booking-info-calendar .eshb-booking-info-calendar-tables table .left-heading div { display: block; height: 100%; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 100%; align-content: center; border-right: 2px solid #e3e3e3; } .eshb-booking-info-calendar .eshb-booking-info-calendar-tables table .table-heading { font-size: 15px; } #eshb-booking-info-modal { position: fixed; width: 100%; height: 100%; z-index: 99999999 !important; display: none; opacity: 1; pointer-events: auto !important; visibility: visible; } #eshb-booking-info-modal .booking-info-modal-bg-overlay { position: fixed; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); z-index: 99999998 !important; } #eshb-booking-info-modal .booking-info-modal-main { position: fixed; background: #fff; z-index: 99999999 !important; left: 50%; top: 50%; transform: translate(-50%, -50%); max-width: 100%; width: 750px; box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3); } @media (max-width: 767px) { #eshb-booking-info-modal .booking-info-modal-main { width: 100%; } } #eshb-booking-info-modal .booking-info-modal-main .booking-info-modal-header { display: block; position: relative; height: auto; background: #fcfcfc; padding: 1em 1.5em; border-bottom: 1px solid #ddd; } #eshb-booking-info-modal .booking-info-modal-main .booking-info-modal-header h2 { padding: 0 !important; margin: 0 !important; font-size: 18px !important; font-weight: 700 !important; line-height: 1.5em !important; } #eshb-booking-info-modal .booking-info-modal-main .booking-info-modal-header .booking-info-modal-close { cursor: pointer; color: #777; height: 54px; width: 54px; padding: 0; position: absolute; top: 0; right: 0; text-align: center; border: 0; border-left: 1px solid #ddd; background-color: transparent; transition: color 0.1s ease-in-out, background 0.1s ease-in-out; border-radius: 0; z-index: 99999999 !important; } #eshb-booking-info-modal .booking-info-modal-main .booking-info-modal-header .booking-info-modal-close::before { font: normal 22px/50px dashicons !important; color: #666; display: block; content: "\f335"; } #eshb-booking-info-modal .booking-info-modal-main .booking-info-modal-content { padding: 0.5em 1.5em 2em; overflow: auto; max-height: 85vh; } .csf-field-group .csf-cloneable-item { display: block; } .csf-field-group .csf-cloneable-item .csf-cloneable-content { display: none; } .csf-field-group .csf-cloneable-item .csf-cloneable-alert { display: none; } .daterangepicker { --eshb-booked-bg-color: #bebcbb; --eshb-active-bg-color: var(--eshb-primary-color); --eshb-inrange-bg-color: var(--eshb-dark-color); --eshb-booked-color: var(--eshb-dark-color); --eshb-active-color: var(--eshb-white-color); --eshb-inrange-color: var(--eshb-white-color); /* Bootstrap Table Styles */ } .daterangepicker.dropdown-menu { z-index: 10000; } .daterangepicker .calendar-table { border: none; } .daterangepicker .daterangepicker_input { display: none; } .daterangepicker .range_inputs button { padding: 5px 20px; cursor: pointer; width: auto; } .daterangepicker .range_inputs button.applyBtn { background-color: var(--eshb-primary-color); border: 1px solid var(--eshb-primary-color); color: var(--eshb-white-color); } .daterangepicker .range_inputs button.applyBtn:hover { background-color: transparent; color: var(--eshb-text-color); border: 1px solid var(--eshb-primary-color); } .daterangepicker .range_inputs button.cancelBtn { background-color: transparent; color: var(--eshb-text-color); border: 1px solid var(--eshb-primary-color); } .daterangepicker .range_inputs button.cancelBtn:hover { color: var(--eshb-white-color); background-color: var(--eshb-primary-color); border: 1px solid var(--eshb-primary-color); } .daterangepicker table { width: 100%; margin-bottom: 1rem; color: var(--eshb-text-color); border-collapse: collapse; border: none !important; } .daterangepicker table th, .daterangepicker table td { vertical-align: top; padding: 3px; background: transparent; border-radius: 0px !important; } .daterangepicker th.next.available:before { content: "\f345"; font-family: "dashicons"; } .daterangepicker th.prev.available:before { content: "\f341"; font-family: "dashicons"; } .daterangepicker thead:first-child tr:first-child th { border-block-start: unset; } .daterangepicker table tr { display: block; margin-top: 8px; } .daterangepicker td { text-decoration: none !important; } .daterangepicker td:hover { background-color: var(--eshb-active-bg-color) !important; color: var(--eshb-active-color) !important; } .daterangepicker td.booked-date { color: var(--eshb-booked-color) !important; background-color: var(--eshb-booked-bg-color) !important; } .daterangepicker td.booked-date.active { color: var(--eshb-booked-color) !important; background-color: var(--eshb-booked-bg-color) !important; } .daterangepicker td.booked-date:hover { background-color: transparent; } .daterangepicker td.checked-in-date { background-image: linear-gradient(135deg, transparent 50%, var(--eshb-booked-bg-color) 50%); color: var(--eshb-booked-color) !important; font-style: italic; } .daterangepicker td.checked-in-date.active, .daterangepicker td.checked-in-date:hover { background-color: var(--eshb-active-bg-color) !important; background-image: linear-gradient(135deg, transparent 50%, var(--eshb-booked-bg-color) 50%); color: var(--eshb-active-color) !important; } .daterangepicker td.checked-out-date { background-image: linear-gradient(135deg, var(--eshb-booked-bg-color) 50%, transparent 50%); font-style: italic; } .daterangepicker td.holiday-date { color: rgb(255, 0, 0) !important; } .daterangepicker td.holiday-date:hover { background-color: transparent; } .daterangepicker td.start-date.active { background-color: var(--eshb-active-bg-color) !important; color: var(--eshb-active-color) !important; } .daterangepicker td.end-date.active, .daterangepicker td.end-date.active:hover { background-color: var(--eshb-active-bg-color) !important; color: var(--eshb-active-color) !important; } .daterangepicker td.in-range { background-color: var(--eshb-inrange-bg-color); color: var(--eshb-active-color) !important; } body.post-type-eshb_booking #post-body-content, body.post-type-eshb_payment #post-body-content { margin-bottom: 0 !important; } body.post-type-eshb_booking .page-title-action, body.post-type-eshb_payment .page-title-action { display: none; } body.post-type-eshb_booking .eshb-page-title-action, body.post-type-eshb_payment .eshb-page-title-action { margin-top: -5px; vertical-align: middle; } body.post-type-eshb_booking.eshb-has-manual-booking .page-title-action, body.post-type-eshb_payment.eshb-has-manual-booking .page-title-action { display: inline-block !important; } body.post-type-eshb_booking #major-publishing-actions, body.post-type-eshb_payment #major-publishing-actions { padding: 10px 9px; } body.post-type-eshb_booking #major-publishing-actions #delete-action, body.post-type-eshb_payment #major-publishing-actions #delete-action { margin-right: 10px; } body.post-type-eshb_booking #major-publishing-actions #publishing-action, body.post-type-eshb_payment #major-publishing-actions #publishing-action { float: left; } body.post-type-eshb_booking #major-publishing-actions #publishing-action .spinner, body.post-type-eshb_payment #major-publishing-actions #publishing-action .spinner { float: right; } body.post-type-eshb_booking .eshb-error-message, body.post-type-eshb_payment .eshb-error-message { display: none; padding: 0 10px; } body.post-type-eshb_booking .input-error, body.post-type-eshb_payment .input-error { border: 1px solid var(--eshb-danger-color); } .has-required-notice { opacity: 0.5; pointer-events: none; } #eshb_booking_metaboxes .err-msg { margin: 5px 10px 5px -12px; color: var(--eshb-danger-color); } #eshb_booking_metaboxes .csf-field-text input { max-width: 250px; } #eshb_booking_metaboxes .booking-requirement-input .csf-fieldset .csf--wrap { margin-right: 5px; } #eshb_booking_metaboxes .booking-requirement-input .csf-fieldset .capacity-status { margin-top: 5px; } #eshb_booking_metaboxes .booking_metaboxes-pricing-calculation-fields { background: #f9f9f9; min-height: 140px; } #eshb_booking_metaboxes .booking_metaboxes-pricing-calculation-fields .cost-calculator-wrapper .total-cost-label { display: flex; justify-content: space-between; } #eshb_booking_metaboxes .booking_metaboxes-pricing-calculation-fields .cost-calculator-wrapper .total-cost-label .eshb-booking-value { display: inline; } #eshb_booking_metaboxes .booking_metaboxes-pricing-calculation-fields .cost-calculator-wrapper .eshb-booking-total-discounted-pricing { display: none; border-top: 1px dashed; padding-top: 15px; } #eshb_booking_metaboxes .booking_metaboxes-pricing-calculation-fields .cost-calculator-wrapper.has-discounted-price .eshb-booking-total-pricing { font-size: 16px; } #eshb_booking_metaboxes .booking_metaboxes-pricing-calculation-fields .cost-calculator-wrapper.has-discounted-price .eshb-booking-total-discounted-pricing { display: flex; font-size: 26px; } #eshb_booking_metaboxes .eshb-customer-details-input-group { margin-top: 50px; max-width: fit-content; } #eshb_booking_metaboxes .eshb-customer-details-input-group .eshb-booking-form-customer-details { background: #fff; padding: 15px; box-shadow: 5px 5px 5px 9px rgba(237, 237, 237, 0.3490196078); border-radius: 10px; } #eshb_booking_metaboxes .eshb-customer-details-input-group .eshb-form-group { display: flex; gap: 20px; } #eshb_booking_metaboxes .eshb-customer-details-input-group .eshb-form-group input { margin-bottom: 15px; width: 250px; } #eshb_booking_metaboxes .eshb-customer-details-input-group .eshb-form-group select { margin-bottom: 15px; width: 250px; } #eshb_booking_metaboxes .eshb-customer-details-input-group .eshb-form-group textarea { width: 100%; height: 80px; } #eshb_booking_metaboxes .eshb-customer-details-input-group button#confirm-booking-admin { padding: 4px 18px; margin-top: 15px; font-size: 14px; } #eshb_booking_metaboxes .time-slots-metabox { display: none; } #eshb_booking_metaboxes .time-slots-wrapper { display: none; } #eshb_booking_metaboxes .time-slots-wrapper .field-label { display: none; text-align: center; } #eshb_booking_metaboxes .time-slots-wrapper .eshb-form-group { display: contents; } #eshb_booking_metaboxes .time-slots-wrapper.has-time-slots { display: block; } #eshb_booking_metaboxes .time-slots-wrapper.has-time-slots .field-label { display: block; } #eshb_booking_metaboxes .time-slots-wrapper.has-time-slots .empty-slot-msg { display: none; } #eshb_booking_metaboxes .time-slots-wrapper .eshb-form-group { display: flex; flex-wrap: wrap; justify-content: center; flex-direction: column; align-items: center; } #eshb_booking_metaboxes .time-slots-wrapper .time-slots { width: 100%; display: flex; flex-direction: column; gap: 6px; } #eshb_booking_metaboxes .time-slots-wrapper .eshb-time-slot { display: flex !important; align-items: center; margin: 0; } #eshb_booking_metaboxes .time-slots-wrapper .eshb-time-slot .eshb-times { display: flex; align-items: center; gap: 10px; } #eshb_booking_metaboxes .time-slots-wrapper .eshb-time-slot .eshb-times input { text-align: center; } #eshb_booking_metaboxes .time-slots-wrapper .eshb-time-slot .eshb-times input::-webkit-calendar-picker-indicator { filter: brightness(0) invert(1); cursor: pointer; } .eshb-deposit-requests-metaboxes-inner { display: flex; flex-direction: column; gap: 15px; } .eshb-deposit-requests-metaboxes-inner .eshb-deposit-requests-metabox-item { display: flex; align-items: center; gap: 5px; } .eshb-deposit-requests-metaboxes-inner .eshb-deposit-requests-metabox-item p { margin: 0; } .eshb-deposit-requests-metaboxes-inner .eshb-deposit-requests-metabox-item:nth-last-child(1) { border-top: 1px solid #ededed; padding-top: 15px; } .eshb-deposit-requests-metaboxes-inner .ajax-loader { position: absolute; left: 0; width: 100%; height: 100%; display: none; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.9490196078); } .eshb-deposit-requests-metaboxes-inner .ajax-loader img { height: 50px; } .eshb-deposit-requests-metaboxes-inner p.form-status { display: contents; margin-bottom: 9px; } .eshb-plugin-page #titlediv #title { border-color: #d4d2d2; } .eshb-plugin-page .postbox { box-shadow: 0 4px 40px rgba(0, 0, 0, 0.05); border-radius: 10px; overflow: hidden; border: none; } .eshb-plugin-page .postbox .eshb-admin-notice { margin: auto; } .eshb-plugin-page .wp-list-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 5px; overflow: hidden; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); } .eshb-plugin-page .wp-list-table thead { background: #f5f7fa; } .eshb-plugin-page .wp-list-table thead th { padding: 12px 16px; font-weight: 600; font-size: 14px; text-align: left; color: #333; border-bottom: 2px solid #e1e5eb; } .eshb-plugin-page .wp-list-table tbody tr { transition: background 0.2s ease; } .eshb-plugin-page .wp-list-table tbody tr:nth-child(even) { background: #fafafa; } .eshb-plugin-page .wp-list-table tbody tr:hover { background: #f0f4ff; } .eshb-plugin-page .wp-list-table tbody tr td { padding: 12px 16px; font-size: 14px; color: #444; border-bottom: 1px solid #eaeaea; } .eshb-plugin-page .wp-list-table tbody tr td:first-child { font-weight: 500; color: #222; width: 30%; } .eshb-plugin-page .wp-list-table tbody tr td:last-child { color: #555; } .eshb_easy_hotel_help_support_callback .eshb-help-support { padding: 24px 0 0 0; } .eshb_easy_hotel_help_support_callback .eshb-help-support h2 { font-size: 32px; line-height: normal; } .eshb_easy_hotel_help_support_callback .help-col-container { display: flex; flex-wrap: wrap; gap: 22px; margin-bottom: 32px; } .eshb_easy_hotel_help_support_callback .help-col { background-color: #fff; border: 1px solid transparent; border-radius: 8px; box-shadow: 0 2px 3px 0 hsla(0, 0%, 51%, 0.1); padding: 24px; } .eshb_easy_hotel_help_support_callback .help-col h3 { margin-top: 0; margin-bottom: 16px; font-size: 20px; font-weight: 700; color: #111; letter-spacing: 0.01em; } .eshb_easy_hotel_help_support_callback .help-col .fa-facebook, .eshb_easy_hotel_help_support_callback .help-col .fa-youtube, .eshb_easy_hotel_help_support_callback .help-col .fa-linkedin { padding: 3px 5px; font-size: 20px; margin-right: 4px; } .eshb_easy_hotel_help_support_callback .help-col p, .eshb_easy_hotel_help_support_callback .help-col ul { margin-bottom: 0.7em; } .eshb_easy_hotel_help_support_callback .help-col ul { padding-left: 18px; } .eshb_easy_hotel_help_support_callback .help-col a { display: inline-block; background: linear-gradient(90deg, #ab8965 0%, #70533a 100%); text-decoration: none; font-weight: 600; padding: 10px 22px; border-radius: 6px; margin-top: 10px; box-shadow: 0 1px 4px rgba(171, 137, 101, 0.08); transition: background 0.18s, box-shadow 0.18s, transform 0.18s; font-size: 1em; } .eshb_easy_hotel_help_support_callback .help-col a:hover { background: linear-gradient(90deg, #70533a 0%, #ab8965 100%); box-shadow: 0 4px 16px rgba(171, 137, 101, 0.18); transform: translateY(-2px) scale(1.04); text-decoration: none; } .eshb_easy_hotel_help_support_callback .eshb-youtube-playlist { display: flex; flex-wrap: wrap; gap: 24px; } .eshb_easy_hotel_help_support_callback .eshb-video-player { flex: 2 1 320px; min-width: 320px; } @media only screen and (max-width: 1024px) { .eshb_easy_hotel_help_support_callback .eshb-video-player { flex: 1 !important; } } .eshb_easy_hotel_help_support_callback .eshb-video-player iframe { width: 100%; min-height: 220px; border-radius: 8px; } @media only screen and (max-width: 1024px) { .eshb_easy_hotel_help_support_callback .eshb-video-player iframe { min-height: 160px; width: auto !important; } } .eshb_easy_hotel_help_support_callback .eshb-playlist-sidebar { flex: 1 1 180px; min-width: 180px; } @media only screen and (max-width: 1024px) { .eshb_easy_hotel_help_support_callback .eshb-playlist-sidebar { flex: 1 !important; width: 100% !important; } } .eshb_easy_hotel_help_support_callback .eshb-playlist-item { background: #f8f6f3; border: none; border-radius: 8px; padding: 8px; cursor: pointer; display: flex; align-items: center; gap: 10px; transition: background 0.15s; } .eshb_easy_hotel_help_support_callback .eshb-playlist-item:hover { background: #f0e8df; } @media (max-width: 900px) { .eshb_easy_hotel_help_support_callback .help-col-container { grid-template-columns: 1fr; gap: 18px; } .eshb_easy_hotel_help_support_callback .help-col { min-width: 0; } .eshb_easy_hotel_help_support_callback .eshb-youtube-playlist { flex-direction: column; } } .eshb_easy_hotel_help_support_callback .eshb-social-icons a { display: inline-block; padding: 4px 7px; border-radius: 5px; margin-right: 6px; background: #4360ee; transition: background 0.15s; font-size: 20px; line-height: 1; color: #fff !important; } .eshb_easy_hotel_help_support_callback .eshb-social-icons a:hover { background: #e6e6e6; } .eshb_easy_hotel_help_support_callback .help-col .btn-docs { background: #e8f0fe; color: #4360ee; font-weight: 600; } .eshb_easy_hotel_help_support_callback .help-col .btn-docs:hover { background: #4360ee; color: #fff; } .eshb_easy_hotel_help_support_callback .help-col .btn-support { background: #eafaf1; color: #00bfae; font-weight: 600; } .eshb_easy_hotel_help_support_callback .help-col .btn-support:hover { background: #00bfae; color: #fff; } .eshb_easy_hotel_help_support_callback .help-col .btn-community { background: #fff3e0; color: #ff9800; font-weight: 600; } .eshb_easy_hotel_help_support_callback .help-col .btn-community:hover { background: #ff9800; color: #fff; } /* Dashicon backgrounds for Help & Support boxes */ .eshb_easy_hotel_help_support_callback .eshb-dashicon-bg { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; margin-right: 10px; font-size: 22px; background: #e8f0fe; color: #4360ee; box-shadow: 0 1px 4px rgba(171, 137, 101, 0.06); } .eshb_easy_hotel_help_support_callback .eshb-dashicon-bg.docs { background: #e8f0fe; color: #4360ee; } .eshb_easy_hotel_help_support_callback .eshb-dashicon-bg.support { background: #eafaf1; color: #00bfae; } .eshb_easy_hotel_help_support_callback .eshb-dashicon-bg.community { background: #fff3e0; color: #ff9800; } .eshb_easy_hotel_help_support_callback .eshb-dashicon-bg .dashicons { font-size: 22px; width: 22px; height: 22px; line-height: 1; } .eshb_easy_hotel_help_support_callback .eshb-dashicon-bg.follow { background: #f3e8fd; color: #8e24aa; } .eshb_easy_hotel_help_support_callback .eshb-dashicon-bg.video { background: #fdeaea; color: #ff0000; } .eshb_easy_hotel_help_support_callback .help-col-video { width: 100%; max-width: -webkit-fill-available; background: #fff; border-radius: 14px; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07); padding: 32px 28px 24px 28px; margin-top: 32px; margin-bottom: 0; border: 1px solid #f0f0f0; } @media (max-width: 900px) { .eshb_easy_hotel_help_support_callback .help-col-video { padding: 22px 10px 18px 10px; } }/*# sourceMappingURL=admin.css.map */