/* Top right tap button in flex row */
.top-right-tap {
    display: inline-block;
    vertical-align: middle;
    margin-left: 18px;
    width: 64px;
    height: 64px;
    background: url('beer-tap.png') center center/cover no-repeat, #232b2b;
    /* border-radius: 12px; */
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.10); */
    z-index: 30;
    /* border: 2px solid #005500; */
    transition: box-shadow 0.2s, border-color 0.2s;
}
.top-right-tap:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    border-color: #139445;
}
@media (max-width: 600px) {
    .top-right-tap {
        width: 36px;
        height: 36px;
        margin-left: 10px;
    }
}
/* Responsive manage page content width */
.manage-content {
    max-width: 80vw;
    margin: 40px auto;
}
/* File input button and placeholder text color */
input[type="file"]::file-selector-button {
    color: #fff;
    background: #005500;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 1em;
    cursor: pointer;
}
input[type="file"]::file-selector-button::after {
    color: #fff;
}
input[type="file"]::-webkit-file-upload-button {
    color: #fff;
}
input[type="file"]::-ms-browse {
    color: #fff;
}
.spinner-title {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100vw;
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    color: #005500;
    z-index: 20;
    pointer-events: none;
    letter-spacing: 0.03em;
}
.admin-btn {
    display: inline-block;
    margin-right: 10px;
    padding: 8px 18px;
    background: #005500;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.08em;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.admin-btn:hover {
    background: #217dbb;
    color: #fff;
}
.admin-btn-danger {
    background: #e74c3c;
}
.admin-btn-danger:hover {
    background: #c0392b;
}
.admin-input {
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid #bbb;
    margin-right: 10px;
    font-size: 1.8em;
    margin-bottom: 8px;
    color: #000000;
}
.admin-label {
    padding: 8px 12px;
    margin-right: 10px;
    font-size: 1.8em;
    margin-bottom: 8px;
    color: #fff;
}

input[type="checkbox"] {
    width: 1.8em;
    height: 1.8em;
    accent-color: #005500;
    vertical-align: middle;
    margin-right: 10px;
}
.admin-form {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #232b2b;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.admin-table {
    color: #fff;
}
.admin-table th, .admin-table td {
    padding: 10px 8px;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
}

/* Increase font size of table row values only, not header */
.admin-table td {
    font-size: 1.8em;
}
.admin-table th, .admin-table td {
    color: #fff;
}
.admin-table tr:last-child td {
    border-bottom: none;
}

body {
    min-height: 100vh;
    background-color: #232b2b;
    font-family: Arial, sans-serif;
    margin: 0;
}
.flex-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: start;
    gap: 10px;
}

/* Top row flex container for menu and tap button */
.top-row {
    position: absolute;
    top: 20px;
    left: 30px;
    right: 30px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-left {
    display: flex;
    align-items: center;
}
@media (max-width: 600px) {
    .top-row {
        top: 12px;
        left: 12px;
        right: 12px;
    }
}

.spinner-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: #232b2b;
    padding: 4vw 6vw;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    max-width: 95vw;
    max-height: 95vh;
}

.spinner-wheel {
    width: clamp(220px, 60vw, 800px);
    height: clamp(220px, 60vw, 800px);
    border: clamp(8px, 3vw, 20px) solid #005500;
    border-radius: 50%;
    margin: 0 auto 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #232b2b url('club_leaf_only.svg') center -5% no-repeat;
    background-size: 80% 80%;
    box-sizing: border-box;
}

.input-text {
    color: #000000;
    font-size: 1.2em;
}

.number-display {
    font-size: clamp(3em, 12vw, 10em);
    font-weight: bold;
    color: #139445;
    letter-spacing: 0.05em;
    word-break: break-all;
    margin-top: 50%;
}
@media (max-width: 600px) {
    .spinner-container {
        padding: 4vw 2vw;
    }
    .spinner-wheel {
        width: 80vw;
        height: 80vw;
        border-width: 5vw;
    }
    .number-display {
        font-size: 2.2em;
    }
    button {
        font-size: 1.1em;
        padding: 10px 18px;
    }
}

button {
    padding: 16px 40px;
    font-size: 1.5em;
    background-color: #2ecc71;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

button:hover {
    background-color: #27ae60;
}
