/* ===== Custom Styles ===== */
body {
    padding-bottom: 60px; /* for fixed navbar */
}

/* Carousel images */
.carousel-item img {
    object-fit: cover;
    height: 200px;
}

/* Review scroll container */
#contain {
    height: 200px;
    overflow-y: auto;
}
#table_scroll thead th {
    background-color: #ea922c;
    color: #000;
    padding: 10px;
}
#table_scroll tbody td {
    background-color: #e3e1e2;
    padding: 10px;
}

/* Custom modal (for InsufficientBal) */
.modedit {
    display: none;
    position: fixed;
    z-index: 1055;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}
.modal-contentedit {
    background-color: #fefefe;
    margin: 30vh auto;
    padding: 1rem;
    border: 1px solid #888;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
}
.closeeedit {
    color: #aaa;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}
.closeeedit:hover {
    color: black;
}

/* Loading spinner (earn page) */
.loading-spinner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

/* VIP card images */
.vip-card img {
    width: 50px;
    height: 100px;
    object-fit: contain;
}

/* Partner images */
.partner-img {
    max-height: 80px;
    object-fit: contain;
}