/* GA Analytics Widget */
.ga-widget-container {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 4px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.ga-widget-title {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: #2d2d2d;
    text-align: center;
    width: 100%;
    word-wrap: break-word;
}

.ga-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
    width: 100%;
}

.ga-stat-box {
    text-align: center;
    width: 100%;
}

.ga-stat-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
    white-space: normal;
    word-wrap: break-word;
}

.ga-stat-value {
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    word-wrap: break-word;
}

.ga-stat-views { color: #4285f4; }
.ga-stat-users { color: #34a853; }

.ga-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
}

.ga-stat-card {
    background: white;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.ga-card-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    font-weight: 600;
    white-space: normal;
    word-wrap: break-word;
}

.ga-card-value {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    font-weight: 700;
    line-height: 1.2;
    word-wrap: break-word;
}

.ga-card-yesterday { color: #4285f4; }
.ga-card-today { color: #34a853; }

.ga-widget-error {
    color: #dc3545;
    text-align: center;
    padding: 10px;
}

/* Dark mode */
body.dark-mode .ga-widget-container {
    background: #2d2d2d;
}

body.dark-mode .ga-widget-title {
    color: #e0e0e0;
}

body.dark-mode .ga-stat-card {
    background: #1e1e1e;
}

body.dark-mode .ga-card-label {
    color: #aaa;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .ga-widget-container {
        padding: 15px;
    }
    
    .ga-stats-grid,
    .ga-cards-grid {
        gap: 10px;
    }
    
    .ga-stat-card {
        padding: 10px;
    }
}

/* FORȚĂ REDIMENSIONARE */
.ga-stats-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
}

.ga-stat-value {
    font-size: 20px !important; /* era 24-32px */
    font-weight: 600 !important; /* puțin mai puțin bold */
}

.ga-cards-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
}

.ga-stat-card {
    padding: 12px !important;
}

.ga-card-value {
    font-size: 16px !important; /* era 20-24px */
    font-weight: 600 !important;
}

/* Forțăm lățimea maximă */
.ga-widget-container {
    max-width: 100% !important;
    overflow: hidden !important;
}

.ga-stat-label, 
.ga-card-label {
    font-size: 11px !important;
    white-space: normal !important;
    line-height: 1.3 !important;
}
