/* Stats Panel */
.stats-section {
    background-color: #990000;
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.stats-header {
    font-size: 1.2rem;
    font-weight: bold;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.stat-value {
    font-weight: bold;
    font-size: 1.1rem;
}

/* Round Counter */
.round-counter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    margin-top: 0.5rem;
}

.round-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.round-number {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Tiles Remaining */
.tiles-remaining {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
}

.tiles-icon {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.tiles-count {
    font-size: 1.2rem;
    font-weight: bold;
} 