
.click-wrap {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

ul ul { display: none; position: absolute; }
li:hover > ul { display: inherit; }

.sticky-nav {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* ------- Homepage Carousel ------- */

.carousel-button {
    background-color: rgba(6, 95, 70, 0.6); /* bg-green-800 */
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px; /* rounded-full */
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    z-index: 30;
}
.carousel-button.left {
    left: 24rem;
}
.carousel-button.right {
    right: 23rem;
}
.carousel-button svg {
    width: 2rem;
    height: 2rem;
}

.listing-max-w {
    max-width: 208px;
}

/* -------- End Carousel -------- */ 

body {

    background-image: url('../images/banner-plain.png');
    background-repeat: no-repeat;

    background-attachment: fixed;
    background-size: 100% 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.content {
    flex: 1;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: calc(100vh - 160px);
}

.footer {
    background-color: #f3f4f6;
}

/* -------- Category / Item Listing Cards -------- */

.box { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08); }
.box-max-w { max-width: 360px; }
.hover-icons { display: inline-block;}
/* .gallery {}

/* -------- End Listing Cards -------- */

/* PDF modal resize */
.resizable {
    resize: both;
    overflow: auto;
}

/* --- Lodge Info & Auth Tables / portal.blade.php / auth, etc. --- */

.info-table {
    margin-left: 0;
    width: auto;
    max-width: 720px;
    border-collapse: collapse;
    text-align: left;
    margin-bottom: 30px;
    table-layout: auto;
}

.info-table td, .info-table th {
    padding: 0.4rem 0.8rem;
    border: 1px solid #110e0e;
}

.info-table td:first-child, .info-table th:first-child {
    font-weight: bold;
    max-width: 200px;
    min-width: 150px;
    white-space: nowrap;
    vertical-align: top;
}

.info-table td:last-child, .info-table th:last-child {
    width: auto;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.4;
}

.info-table td span, .info-table th span {
    display: inline-block;
    max-width: 100%;
    overflow-wrap: break-word;
}
