/**
 * Game Log Stats Block - Editor Styles
 */

.game-log-stats-block-editor {
    padding: 20px;
    border: 2px dashed #ccd0d4;
    border-radius: 8px;
    background: #f9f9f9;
    text-align: center;
}

.game-log-stats-block-editor h3 {
    margin: 0 0 10px 0;
    color: #23282d;
    font-size: 18px;
}

.game-log-stats-block-editor p {
    margin: 0 0 20px 0;
    color: #666;
    font-style: italic;
}

.stats-preview {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
}

.stats-preview .stat-box {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    min-width: 80px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.stats-preview .stat-box h4 {
    font-size: 1.5em;
    margin: 0 0 5px 0;
    color: #23282d;
    font-weight: 600;
}

.stats-preview .stat-box p {
    margin: 0;
    color: #666;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-style: normal;
}

/* Responsive editor styles */
@media (max-width: 768px) {
    .stats-preview {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-preview .stat-box {
        min-width: 120px;
    }
}
