/*
    Theme Name: Sperling Starter
    Theme URI: https://www.sperlinginteractive.com
    Description: Sperling Interactive WordPress Starter Theme
    Version: 1.0
    Author: Sperling Interactive
  Theme URI: https://www.sperlinginteractive.com
*/

/*------------------------------------*\
    Example of Using Root Variable 
    :root {
        --blue: #0000FF          
    }
    .test-element {
        color: var(--blue)
    }
\*------------------------------------*/

:root {
}

/* global box-sizing */
*,
*:after,
*:before {
    box-sizing: border-box;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* html element 62.5% font-size for REM use */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    color: #444;
    font: 400 16px/1.6 Helvetica, Arial, sans-serif;
    font: 400 1.6rem/1.6 Helvetica, Arial, sans-serif;
}

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

.clear:after {
    clear: both;
}

.clear {
    zoom: 1;
}

img {
    max-width: 100%;
    vertical-align: bottom;
    height: auto;
}

/* Lightspeed Lazy load fade in */
img[data-lazyloaded] {
    opacity: 0;
}

img.litespeed-loaded {
    -webkit-transition: opacity 0.5s linear 0.2s;
    -moz-transition: opacity 0.5s linear 0.2s;
    transition: opacity 0.5s linear 0.2s;
    opacity: 1;
}

a {
    text-decoration: none;
    color: #64aecc;
}

a:hover {
    color: #3a7f9b;
}

a:focus {
    outline: 0;
}

a:hover,
a:active {
    outline: 0;
}

input:focus {
    border: 1px solid #04a4cc;
    outline: 0;
}

p,
ul,
ol {
    font-size: 1.7rem;
}

h1 {
    font-size: 3.6rem;
    font-family: "Roboto Slab", serif;
    color: #002d3f;
    line-height: 1.25;
}

h2 {
    font-size: 3.2rem;
    font-family: "Roboto Slab", serif;
    color: #002d3f;
    margin-bottom: 10px;
}

h3 {
    font-size: 2.8rem;
    font-family: "Roboto Slab", serif;
    color: #002d3f;
    margin-bottom: 10px;
}

h4 {
    font-size: 2.4rem;
    font-family: "Roboto Slab", serif;
    color: #002d3f;
    margin-bottom: 10px;
}

h5 {
    font-size: 2rem;
    font-family: "Roboto Slab", serif;
    color: #002d3f;
    margin-bottom: 10px;
}

h6 {
    font-size: 1.6rem;
    font-family: "Roboto Slab", serif;
    color: #002d3f;
    margin-bottom: 10px;
}

blockquote {
    margin: 25px 0;
    padding: 25px 0 25px 5vw;
    font-style: italic;
    border-top: 1px solid;
    border-bottom: 1px solid;
    font-weight: 700;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
/* wrapper */
.wrapper {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    width: 100%;
    max-width: 2560px;
}

main {
    flex: 1 auto;
    width: 100%;
    height: 100%;
}

.container {
    max-width: 1280px;
    align-self: center;
    flex: 1 auto;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    padding: 0 20px;
}

/* header */
.header {
    background-color: #002d3f;
    position: relative;
    padding: 10px 0;
    -webkit-box-shadow: 0px 5px 5px 0px rgb(0 0 0 / 15%);
    box-shadow: 0px 5px 5px 0px rgb(0 0 0 / 15%);
}

.home .header {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.header .columns {
    margin-bottom: 0;
}

.menu-area {
    justify-content: space-between;
}

.logo {
    padding: 0px 20px 0px 28px;

    /* flex: 0 1 auto; */
}

.logo a {
    /* display:inline-block; */
    margin-right: 60px;
}

.logo-img {
    backface-visibility: hidden;
    max-height: 110px;
}

.footer-logo-img {
    max-height: 70px;
}

/* -- NAV -- */
/* setup */
.nav {
    padding: 10px 20px 10px 0;
    flex: 0 1 auto;
}

.nav ul {
    padding: 0;
    list-style-type: none;
    margin: 0;
}

.nav li {
    display: inline-block;
    position: relative;
}

.nav a {
    color: #ffffff;
    padding: 0 15px;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

/*
.nav a:hover {
    opacity: 0.7;
}
*/

.nav li:hover ul.sub-menu {
    /* display: block; */
    /* animation */
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
}

.nav li ul.sub-menu ul.sub-menu {
    /* display: none; */
    left: 149%;
    top: 0;
}

.nav li:hover ul.sub-menu ul.sub-menu {
    /* display: none; */
    left: 149%;
    top: 0;
    /* animation */
    position: absolute;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: 300ms ease;
    -moz-transition: 300ms ease;
    -o-transition: 300ms ease;
    transition: 300ms ease;
}

.nav ul.sub-menu li:hover ul.sub-menu {
    /* display: block; */
    left: 149%;
    top: 0;
    /* animation */
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
}

ul.sub-menu {
    background: #ededed;
    border-radius: 4px;
    width: 225px;
    text-align: left;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 1.4rem;
    /* display: none; */
    z-index: 100;
    -webkit-box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.23);
    box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.23);
    border-bottom: solid 5px #968832;
    /* animation */
    position: absolute;
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: 300ms ease;
    -moz-transition: 300ms ease;
    -o-transition: 300ms ease;
    transition: 300ms ease;
}

.sub-menu li {
    padding: 5px;
}

.sub-menu a {
    font-size: 1.6rem;
    font-weight: normal;
    color: #002d3f;
}

.sub-menu a:hover {
    font-size: 1.6rem;
    font-weight: normal;
    color: #130f17;
}

ul.sub-menu a {
    display: block;
    padding: 10px;
}

ul.sub-menu li {
    display: block;
}

/* animated lines */
.nav > ul > li > a {
    font-size: 17px;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    padding: 20px 0px;
    margin: 0px 20px;
    display: inline-block;
    position: relative;
    opacity: 1;
    font-family: "Roboto Slab", serif;
}

/* .nav > ul > li > a:hover {
  opacity: 0.7;
} */

.nav > ul > li > a::before {
    transition: 300ms;
    height: 2px;
    content: "";
    position: absolute;
    background-color: #968832;
}

.nav > ul > li > a::before {
    width: 0%;
    bottom: 10px;
}

.nav > ul > li > a:hover::before {
    width: 100%;
}

/* current item handling */
.nav > ul > .current-menu-item > a::before,
.nav > ul > .current-menu-parent > a::before {
    width: 100%;
    bottom: 10px;
    height: 2px;
    content: "";
    position: absolute;
    background-color: #968832;
    opacity: 1;
}

.sub-menu > .current-menu-item > a,
.sub-menu > .current-menu-parent > a {
    font-size: 1.6rem;
    font-weight: normal;
    color: #130f17;
}

.nav #unread-messages {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #968832;
    line-height: 0;
    text-align: center;
}

/* sidebar */
.sidebar {
}

/* footer */
.footer {
    background: #f4f3ea;
    padding: 10px;
}

.pagination {
    font-size: 1.6rem;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*------------------------------------*\
    PAGES
\*------------------------------------*/

/* dashboard */
.print-res-button,
.quick-btn {
    background-color:#f4f3ea; 
    border: solid 1px #dadada; 
    border-radius: 20px; 
    padding: 5px 15px;
    color: black;
}

.print-res-button:hover,
.quick-btn:hover {
    background-color: #c0bfaf; 
    color: black;
}
.booking-card {
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.booking-card-header {
    padding: 20px;
    background-color: #002d3f;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
}

.booking-details {
    font-weight: normal!important;
}

.booking-card[data-status="notordered"] .booking-card-header {
    background-color: rgb(136, 22, 22);
}

.booking-card[data-status="vacant"] .booking-card-header {
    background-color: #e1e1e1;
    color: #767676;
}

.booking-card .booking-breakfast-item {
    padding: 20px;
}
.booking-card .booking-breakfast-item:nth-child(even) {
    background: #efefef;
}
.booking-card .booking-breakfast-item:nth-child(odd) {
    background: #fff;
}

.dashboard-form input:not([type="submit"]),
.dashboard-form select {
    padding: 12px;
}
.dashboard-form label {
    display: block;
    font-weight: bold;
}
.breakfast-counts {
    background-color: #f4f3ea;
}

.breakfast-count-item {
    display: flex; 
    gap: 5px; 
    margin-bottom: 15px
}

.breakfast-count-number {
    padding: 5px; 
    background-color: #002d3f; 
    color: white; 
    width: 30px; 
    height: 30px; 
    text-align: center; 
    line-height: 1.15; 
    border-radius: 50%;
}

.controls {
    font-size: 1.4rem;
    font-weight: normal;
    margin: 7px 0 0 0;
}

/*------------------------------------*\
    FORMS
\*------------------------------------*/

.sperling-form .label {
    font-size: 18px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.sperling-form textarea {
    width: 100%;
    padding: 12px;
}

/* Customize the label (the container) */
.checkcontainer {
    display: block;
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 17px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.checkcontainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom radio button */
.radiobtn {
    position: absolute;
    top: 4px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.checkcontainer:hover input ~ .radiobtn {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.checkcontainer input:checked ~ .radiobtn {
    background-color: #2196f3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radiobtn:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.checkcontainer input:checked ~ .radiobtn:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.checkcontainer .radiobtn:after {
    top: 7px;
    left: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkcontainer:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkcontainer input:checked ~ .checkmark {
    background-color: #2196f3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkcontainer input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkcontainer .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.sperling-form select {
    height: 42px;
    padding: 10px;
    min-width: 200px;
    margin-bottom: 30px;
    display: block;
    min-width: 300px;
}

.food-addon {
    display: none;
}

.sperling-form .breakfast-item-note {
    font-size: 14px;
    margin-left: 30px; 
    margin-top: -15px;
    font-style: italic;
}

.sperling-form .entree-customizations {
    display: none;
}

.required {
    color: red;
}

/* breakfast date choices */
ul.breakfast-date-choices {
    margin: 0; 
    padding: 0;
    list-style: none;
    border-bottom: solid 1px #dadada;
}

ul.breakfast-date-choices li {
    display: inline-block;
}

ul.breakfast-date-choices li a {
    display: block;
}

ul.breakfast-date-choices li.active a {
    background-color: #002d3f;
    color: white;
}

/*------------------------------------*\
    BUTTONS
\*------------------------------------*/
.button {
    padding: 14px 30px;
    font-size: 1.7rem;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    transition: all 0.5s ease;
    background-color: #002d3f;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
    border: 0 !important;
}

.button:hover {
    color: inherit;
    color: #968832;
    background-color: white;
}

/*------------------------------------*\
    MESSENGER
\*------------------------------------*/

.chat-threads-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 325px;
}

.chat-threads-search {
    background-color: #bbb;
    /* flex: 0 0 72px; */
    flex: 0 0 145px;
    padding: 20px 15px;
}

.chat-threads {
    min-width: 325px;
    border-right: 1px solid #e3e3e3;
    /* height: 100%; */
    overflow-y: scroll;
    display: flex;

    flex: 1 auto;
    height: auto;
}

.chat-thread {
    cursor: pointer;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: pre;
    font-size: 1.5rem;
}
.chat-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #eee;
    max-height: 500px;
}

.chat-thread.active {
    background-color: #64aecc;
    color: white;
}

div#chat-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    overflow-y: scroll;
    flex: 1;
}
.chat-message.right {
    align-items: flex-end;
}
.chat-message p {
    font-size: 12px;
    margin: 0;
}

.chat-message {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.chat-message p.message {
    background: #004560;
    padding: 10px 15px;
    color: white;
    border-radius: 20px 20px 20px 0;
    word-break: break-word;
}
.chat-message.right p.message {
    background-color: white;
    color: black;

    border-radius: 20px 20px 0 20px;
}
.chat-message .author {
    text-transform: uppercase;
    font-weight: bold;
}

.chat-thread[data-read="0"] span.unread-indicator {
    width: 15px;
    height: 15px;
    background: #64aecc;
    border-radius: 50%;
    margin-left: 10px;
}
form#send-text {
    padding: 20px;
    align-items: center;
    gap: 10px;
    background-color: #bbb;
    display: none;
}
form#send-text.open {
    display: flex;
}

form#send-text input[type="text"] {
    flex: 1;
    border-radius: 50px;
    box-shadow: none;
    border: 1px solid;
    padding: 5px 10px;
}
form#send-text textarea#send-message {
    flex: 1;
    border-radius:10px;
    box-shadow: none;
    border: 1px solid;
    padding: 5px 10px;
    resize: none;
    width: 100%;
    line-height: 1.4;
}
form#send-text input[type="submit"] {
    background: #002d3f;
    border: 0;
    color: white;
    padding: 6px 10px;
    border-radius: 30px;
}

form#messenger-search-form input[type="text"],
form#broadcast-message input[type="text"],
form#broadcast-message select,
.reservation-action-select, 
#booking-template-select {
    border-radius: 50px;
    box-shadow: none;
    border: 1px solid;
    padding: 5px 10px;
    width: 100%;
}

form#broadcast-message textarea#message {
    border-radius:10px;
    box-shadow: none;
    border: 1px solid;
    padding: 5px 10px;
    resize: none;
    width: 100%;
    line-height: 1.4;
}

.reservation-action-select {
    width: auto;
}

.reservation-actions {
    margin-bottom: 30px;
}

#booking-template-selector {
    padding-top: 10px;
    border-top: 1px solid #ffffff3d;
}

a.broadcast-message {
    background-color: #968832;
    padding: 2px 10px;
    border-radius: 20px;
    display: block;
    color: white;
    margin-bottom: 10px;
}

a.broadcast-message:hover {
    background-color: #50491b;
}

.reservation-line p {
    color: white;
    font-size: 1.4rem;
    margin: 0;
}
.reservation-line p + p {
    text-align: right;
}
.reservation-line {
    display: flex;
    border-bottom: 1px solid #ffffff3d;
    padding: 5px 0;
    justify-content: space-between;
}
.reservation-line p.email {
    line-break: anywhere;
}
.reservation-line:last-of-type {
    border-bottom: 0;
}
p.line-label {
    width: 50%;
    font-weight: bold;
}
.reservation-block {
    margin-bottom: 10px;
    border: 1px solid #ffffff3d;
    padding: 10px;
}
.reservation-info {
    background: #004560;
    padding: 10px;
    overflow-y: scroll;
}

.validation-error,
.dynamic-validation-error {
    background-color: #ff8989;
    padding: 10px 20px;
}

.button-loader {
    display: none;
}

/*------------------------------------*\
    BOOKING INFO
\*------------------------------------*/

.reservations-calendar-wrapper {
    display: flex;
    flex-direction: row;
}

.calendar-date-container {
    border-radius: 4px;
    overflow: hidden;
    height: 28px;
    width: 28px;
}

.calendar-date-month {
    background-color: #ed6439;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    color: white;
    font-size: 7px;
    line-height: 9px;
    margin: -1px;
    padding: 2px 0 1px;
    text-align: center;
    text-transform: uppercase;
}

.calendar-date-day {
    background-color: white;
    border: #00000019 1px solid;
    border-width: 0px 1px 1px 1px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    box-sizing: border-box;
    color: #777;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
}

.reservations-calendar-arrow {
    color: #777;
    font-size: 11px;
    line-height: 26px;
    margin: 0 4px;
}

.calendar-date-container {
    border-radius: 4px;
    overflow: hidden;
    height: 28px;
    width: 28px;
}

.alert-box {
    padding: 20px; 
    background: #F8C952; 
    border-radius: 10px; 
    color: black;
}

/*------------------------------------*\
    TABLES
\*------------------------------------*/

.saleminn-table {
    border: #00000019 1px solid;
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
}

.saleminn-table tr {
    border-bottom: #00000019 1px solid;
    display: flex;
    flex-direction: row;
    position: relative;
}

.saleminn-table td {
    border-right: #00000019 1px solid;
    flex: 1;
    min-height: 15px;
    overflow: hidden;
    overflow-wrap: break-word;
    padding: 8px 15px;
}

.saleminn-table td:last-child {
    border-right: 0;
}

.saleminn-table tr:last-child {
    border-bottom: 0;
}

.saleminn-table.date-room-table {
    border-radius: 10px;
    margin-bottom: 20px;
}

.saleminn-table.date-room-table td {
    padding: 20px;
}

.saleminn-table.date-room-table td:first-child {
    flex: 0 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*------------------------------------*\
    ACF GOOGLE MAP
\*------------------------------------*/

.acf-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    max-height: 600px;
    border: #ccc solid 1px;
    margin: 20px 0;
}

/* Fixes potential theme css conflict. */
.acf-map img {
    max-width: inherit !important;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
@media only screen and (min-width: 320px) {
}

@media only screen and (min-width: 480px) {
}

@media only screen and (min-width: 769px) {
}

@media only screen and (min-width: 1024px) {
    .messenger-container {
        display: flex;
        overflow: hidden;
    }
    .chat-threads {
        display: block;
    }
    .chat-outer-wrap {
        display: flex;
        flex: 1;
        flex-direction: row-reverse;
    }
    .reservation-info {
        width: 25%;
        min-width: 325px;
    }
    .chat-message p.message {
        max-width: 50%;
    }
    .chat-wrap {
        max-height: 100%;
    }
}

@media only screen and (min-width: 1140px) {
}

@media only screen and (min-width: 1280px) {
}

/*------------------------------------*\
    MISC
\*------------------------------------*/
::selection {
    background: #04a4cc;
    color: #fff;
    text-shadow: none;
}

::-webkit-selection {
    background: #04a4cc;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #04a4cc;
    color: #fff;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #9c9c9c;
    margin: 0.5em 0;
    padding: 0;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption .wp-caption-text,
.gallery-caption {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

.sticky {
}

.bypostauthor {
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/
@media print {
    * {
        background: transparent !important;
        box-shadow: none !important;
        color: #000 !important;
        text-shadow: none !important;
    }

    .header,
    .footer,
    button {
        display: none;
    }

    .breakfast-reports-datepicker,
    .breakfast-reports-filters {
        display: none;
    }

    .booking-reports-columns {
        display: block!important;
    }
    .breakfast-counts-column {
        flex: 1 0 100%!important;
        width: 100%!important;
    }
    .booking-reports-columns > .column {
        padding-top: 0!important;
        padding-bottom: 0!important;
    }

    .booking-card {
        padding-bottom: 15px!important;
        border-bottom: solid 1px black;
        line-height: 12px!important;
    }

    .booking-card .controls {
        display: none!important;
    }

    .booking-card-header,
    .booking-card .booking-breakfast-item {
        padding: 0!important;
        font-size: 11px;
      
    }

    .booking-card-header > .columns {
        justify-content: space-between!important;
    }

    .booking-card-header > .columns > .column {
        flex: 0 1 auto!important;
    }

    .booking-card .booking-breakfast-item {
        padding: 0!important;
        margin-top: 12px!important;
    }

    .booking-card-header .booking-details {
        flex: 1 0 100%!important;
        width: 100%!important;
        display: flex!important;
        gap: 20px;
        padding-top: 0!important;
        padding-bottom: 0!important;
    }

    .booking-card[data-status="vacant"],
    .booking-card[data-table-reservation="notreserved"] {
        display: none!important;
    }

    .booking-card .column {
        padding-top: 0px!important;
        padding-bottom: 0px!important;
    }

    .dashboard h1 {
        font-size: 16px;
        margin-top: 0!important;
        margin-bottom: 15px!important;
    }

    .booking-breakfast-item .columns {
        display: block!important;
    }

    .booking-meal-items {
        display: flex;
        gap: 20px;
        /* box-shadow: inset 0 0 0 1000px #a0a0a0!important; */
    }
    .booking-meal-items > div {
        flex: 0 0 auto!important;
        width: calc((100% - 60px) / 4)!important; /* 4 items, 3 gaps of 20px each */
    }

    .booking-meal-items strong {
        font-weight: normal!important;
        font-style: italic!important;
    }

    .breakfast-counts {
        padding: 0!important;
        font-size: 11px!important;
        line-height: 12px!important;
    }

    .breakfast-counts .breakfast-count-item {
        margin-bottom: 0!important;
        line-height: 12px!important;
    }

    .breakfast-counts .breakfast-count-number {
        padding: 0!important;
        width: auto!important;
        height: auto!important;
    }

    .breakfast-counts h4 {
        font-size: 16px;
        margin-top: 0!important;
        margin-bottom: 15px!important;
    }





    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    .nav,
    .sidebar,
    .home-slider,
    #respond {
        display: none;
    }

    @page {
        margin: 2cm;
    }
}
