/* OUTFIT GOOGLE FONT DEFINITIONS */
/* <weight>: Use a value from 100 to 900 */

body {
    font-family: "Outfit", sans-serif;
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* justify-content: center; */
    background: url('https://uahoops-temp.b-cdn.net/background-basketball-red.png'),
    linear-gradient(to bottom, #A42223, #032046);
    background-size: 60%, cover;
    background-position: calc(100% - -80px) calc(100% - -120px), center;
    background-attachment: fixed, fixed;
    background-repeat: no-repeat, no-repeat;
    margin-bottom: -50px;
    overflow-y: auto;
}

#root {
    padding: 10px;
}

.js-hidden,
.auth-hidden {
    display: none !important;
}

footer {
    /* border: 2px solid rgba(255, 255, 255, 0.1); */
    border-radius: 10px;
    padding: 20px;
    background-color: #03204680;        
    margin-top: 20px;
}

.splash-logo {
    height: auto;
    width: 70%;
    min-width: 100px;
    max-width: 400px;
    margin: 0 0 20px 0;
}

.badge {
    font-size: 1.2rem;
    margin-top: 10px;
    background: transparent;
    border: 2px solid white;
    text-transform: uppercase;
    font-weight: 500;
}

.card {
    border-radius: 10px;
    width: 100%;
}

.card-event {
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    max-height: 500px;
}

.card-account {
    border-radius: 10px;
    width: 100%;
}

.map {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    position: relative;
    background-color: #EAEAF7;
}

.map-header {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.93);
    border-radius: 10px;
    width: 97%;
    padding: 10px;
    z-index: 999;
}

.map-legend {
    position: absolute;
    background-color: #CED4FF;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 500;
    color: #032046;
    padding: 10px;
    z-index: 999;
}

.map-logo {
    width: 120px;
    padding-right: 14px;
    border-right: 1px solid #ccc;
}

.ticket-details {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.main-event-detail {
    /* max-width: 1000px; */
    width: 100%;
}

/* Modal styles */
#ticketModal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    overflow: auto;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
}

.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.7);
}

.custom-modal {
    max-width: 1200px;
    /* Maximum width of 600px */
}

/* Hide initially */
#level,
#row,
/* #seat, */
#noRowsMessage {
    display: none;
}

#noRowsMessage {
    color: red;
    font-weight: bold;
}

#levelDiv, #sectionDiv {
    font-size: 40px;
    font-weight: 600;
}

#svgSeatMap {
    width: 100%;
    height: 500px;
}

.toast-message {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0.9;
}

#avatar-menu-container {
    z-index: 100000;
}

.modal-body #purchasePrice {
    font-size: 46px;
    font-weight: 600;
}