﻿/* public/css/blindstimer.css */

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0f4c3a 0%, #1a5f4a 50%, #0d3d2e 100%);
    color: white;
    margin: 0;    
    overflow: hidden;
}

.main-content {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 5vh;
    flex-wrap: wrap;
    display: none;    
}

/* Row 1 - Logo */
.logo-row {
    height: 10vh;
/*    display: flex;
    justify-content: center;
    align-items: center;*/
}
.logo-row img {
    width: 100%;
    height: 100%;
    object-fit: contain;
/*    display: block;
    align-items: center;*/
}

/* Row 2 - Timer */
.timer-row {
    height: 35vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timer-container {
/*    display: flex;
    text-align: center;*/
    background: rgba(0,0,0,0.6);
    padding: 2% 2%;
    border-radius: 15px;
    border: 0.3vh solid #d4af37;
    box-shadow: 0 10vh 20vh rgba(0,0,0,0.5);
    margin-left: auto;
    margin-right: auto;
    font-size: 20vh;
    font-weight: bold;
/*    color: #ffffff;*/
}

/* Row 3 - Info Boxes */
.info-row {
    height: 40%;
    display: flex;
    gap: 1%;
    justify-content: space-between;
}

.info-box {
    flex: 1;
    background: rgba(0,0,0,0.6);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #d4af37;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.info-title {
    font-size: 3vh;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 12px;
}

.info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
/*    gap: 6px;*/
    overflow: hidden;
    justify-content: space-evenly
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 3vh;
    padding: 8px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

    .info-item:last-child {
        border-bottom: none;
    }

.info-label {
    color: #ccc;
    font-weight: 600;
}

.info-value {
    color: #ffd700;
    font-weight: bold;
}

.blinds-current {
    font-size: 7vh;
    text-align: center;
    color: #ffd700;
    font-weight: bold;
    margin: 10px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.blinds-next {
    font-size: 5vh;
    text-align: center;
    color: #ccc;
    margin-top: 10px;
}

.prize-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.2vh;
    overflow-y: auto;
    max-height: 100%;
}

.prize-item {
    display: flex;
    justify-content: space-between;
    padding: 4px 12px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 6px;
    border-left: 3px solid #ffd700;
    font-size: 3vh;
}

/* Row 4 - Copyright */
.footer-row {
    height: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #ccc;
    opacity: 0.8;
}

.league-info-img {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px; /* Adjust size as needed */
    height: auto;
    z-index: 10;
}

.main-content {
    position: relative;
}