.agro-weather-widget {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 500px;
}

.agro-weather-header {
    border-bottom: 2px solid #28a745;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.agro-weather-header h3 {
    color: #28a745;
    margin: 0;
    font-size: 1.4em;
}

.location-info {
    color: #6c757d;
    font-size: 0.9em;
}

.agro-weather-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.agro-weather-crop-select,
.agro-weather-update-btn {
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 14px;
}

.agro-weather-update-btn {
    background: #28a745;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.agro-weather-update-btn:hover {
    background: #218838;
}

.agro-weather-loading {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    padding: 20px;
}

.agro-weather-content {
    min-height: 100px;
}

.analysis-section {
    margin: 15px 0;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.analysis-section h4 {
    margin: 0 0 10px 0;
    color: #495057;
}

.risk-indicator {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 15px;
    color: white;
    font-size: 0.8em;
    font-weight: bold;
    margin-left: 10px;
}

.risk-low { background: #28a745; }
.risk-medium { background: #ffc107; color: #000; }
.risk-high { background: #dc3545; }

.recommendation-item {
    background: #e7f3ff;
    border-left: 4px solid #007bff;
    padding: 10px 15px;
    margin: 8px 0;
    border-radius: 0 5px 5px 0;
}

.weather-alert {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0;
    color: #856404;
}

.gdd-progress {
    background: #e9ecef;
    border-radius: 10px;
    height: 20px;
    margin: 10px 0;
    overflow: hidden;
}

.gdd-progress-bar {
    background: #28a745;
    height: 100%;
    transition: width 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.agro-weather-footer {
    border-top: 1px solid #e9ecef;
    padding-top: 10px;
    margin-top: 15px;
    text-align: center;
}

.agro-weather-footer small {
    color: #6c757d;
}
/* Новые стили для элементов управления */
.agro-weather-location-picker,
.agro-weather-date-picker,
.agro-weather-crop-selector {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #e9ecef;
}

.agro-weather-location-picker h4,
.agro-weather-date-picker h4,
.agro-weather-crop-selector h4 {
    margin: 0 0 15px 0;
    color: #495057;
    font-size: 1.1em;
}

.location-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.coordinate-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.input-group label {
    font-weight: 600;
    font-size: 0.9em;
    color: #495057;
}

.input-group input,
.input-group select {
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 14px;
}

.input-group input.error {
    border-color: #dc3545;
    background-color: #f8d7da;
}

.location-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.agro-weather-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.agro-weather-btn-primary {
    background: #28a745;
    color: white;
}

.agro-weather-btn-primary:hover {
    background: #218838;
}

.agro-weather-btn-secondary {
    background: #6c757d;
    color: white;
}

.agro-weather-btn-secondary:hover {
    background: #545b62;
}

.city-list {
    margin-top: 10px;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
}

.city-item {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9em;
}

.city-item:hover {
    background: #007cba;
    color: white;
    border-color: #007cba;
}

.date-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.quick-dates {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.quick-date-btn {
    background: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 0.8em;
    transition: all 0.3s;
}

.quick-date-btn:hover {
    background: #007cba;
    color: white;
    border-color: #007cba;
}

.agro-weather-actions {
    text-align: center;
    margin: 20px 0;
}

.agro-weather-actions .agro-weather-btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
}

/* Стили для результатов */
.weather-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.weather-stat {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-value {
    display: block;
    font-size: 1.5em;
    font-weight: bold;
    color: #28a745;
}

.stat-label {
    font-size: 0.8em;
    color: #6c757d;
    margin-top: 5px;
}

.climate-comparison {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.comparison-value.above {
    color: #dc3545;
    font-weight: bold;
}

.comparison-value.below {
    color: #007cba;
    font-weight: bold;
}

.welcome-message {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
    font-style: italic;
}

.loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #28a745;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.weather-alert.success {
    background: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.weather-alert.error {
    background: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.widget-description {
    color: #6c757d;
    font-size: 0.9em;
    margin: 5px 0 0 0;
    text-align: center;
}
/* Стили для карты */
.agro-weather-map-picker {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #e9ecef;
}

.map-container {
    position: relative;
}

.map-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.coordinates-display {
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 5px;
    font-family: monospace;
    font-size: 0.9em;
}

/* Стили для станций */
.agro-weather-station-picker {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #e9ecef;
}

.stations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 15px 0;
}

.station-item {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.station-item:hover {
    background: #e9ecef;
    border-color: #007cba;
}

.station-name {
    font-weight: bold;
    flex: 1;
}

.station-details {
    display: flex;
    gap: 15px;
    margin: 0 15px;
    font-size: 0.9em;
    color: #6c757d;
}

.station-distance {
    color: #28a745;
    font-weight: bold;
}

.select-station-btn {
    background: #007cba;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8em;
}

.select-station-btn:hover {
    background: #005a87;
}

.selected-station {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
}

.station-info-card {
    background: white;
    padding: 10px;
    border-radius: 5px;
}

/* Маркер станции на карте */
.station-marker {
    background: transparent;
    border: none;
}

/* Источник данных */
.agro-weather-data-source {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #e9ecef;
}

.data-source-selector {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.data-source-selector label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.data-source-selector input[type="radio"] {
    margin: 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .station-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .station-details {
        margin: 0;
    }
    
    .map-controls {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .data-source-selector {
        flex-direction: column;
        gap: 10px;
    }
}
/* Стили для полной метеостатистики */
.weather-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.weather-stat {
    text-align: center;
    padding: 20px 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.weather-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-color: #007cba;
}

.weather-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #28a745, #007cba, #6f42c1);
}

.stat-icon {
    display: block;
    font-size: 2em;
    margin-bottom: 8px;
}

.stat-value {
    display: block;
    font-size: 1.4em;
    font-weight: bold;
    color: #2c3e50;
    margin: 5px 0;
}

.stat-label {
    display: block;
    font-size: 0.85em;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.stat-range,
.stat-detail {
    display: block;
    font-size: 0.75em;
    color: #495057;
    margin-top: 4px;
    font-style: italic;
}

.stat-range {
    color: #e74c3c;
    font-weight: 500;
}

.stat-detail {
    color: #27ae60;
}

/* Адаптивность для статистики */
@media (max-width: 768px) {
    .weather-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 10px;
    }
    
    .weather-stat {
        padding: 15px 10px;
    }
    
    .stat-value {
        font-size: 1.2em;
    }
    
    .stat-icon {
        font-size: 1.6em;
    }
}

@media (max-width: 480px) {
    .weather-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Улучшаем визуальное разделение секций */
.analysis-section {
    margin: 20px 0;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.analysis-section h4 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 1.2em;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Специфические стили для разных типов данных */
.weather-stat:nth-child(1)::before { background: #e74c3c; } /* Температура */
.weather-stat:nth-child(2)::before { background: #3498db; } /* Осадки */
.weather-stat:nth-child(3)::before { background: #f39c12; } /* Ветер */
.weather-stat:nth-child(4)::before { background: #9b59b6; } /* Давление */
.weather-stat:nth-child(5)::before { background: #1abc9c; } /* Влажность */
.weather-stat:nth-child(6)::before { background: #f1c40f; } /* Солнце */
.weather-stat:nth-child(7)::before { background: #95a5a6; } /* Снег */
/* Стили для фаз развития */
.growth-stages {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.current-stage {
    font-size: 16px;
    margin-bottom: 10px;
    color: #155724;
}

.gdd-progress {
    margin: 15px 0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 14px;
}

.progress-bar {
    background: #e9ecef;
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, #28a745, #20c997);
    height: 100%;
    transition: width 0.5s ease;
}

.next-stage {
    background: #fff3cd;
    padding: 10px;
    border-radius: 5px;
    border-left: 3px solid #ffc107;
    font-size: 14px;
}
/* Стили для больших экранов (более 1200px) */
@media (min-width: 1200px) {
    .agro-weather-widget {
        max-width: none;
        margin: 20px auto;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: visible;
    }

    /* Результаты анализа на всю ширину */
    .analysis-results-container {
        grid-column: 1 / -1;
        width: 100%;
        margin: 30px 0;
    }

    .analysis-section.full-width {
        width: 100%;
        margin: 25px 0;
        padding: 30px;
        background: white;
        border-radius: 15px;
        border-left: 6px solid #28a745;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .analysis-section.full-width h4 {
        font-size: 1.5em;
        margin-bottom: 20px;
        color: #2c3e50;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* Риски на всю ширину */
    .risk-analysis.full-width {
        border-left-color: #dc3545;
    }

    .risk-analysis.full-width .risk-indicator {
        font-size: 1em;
        padding: 8px 16px;
        margin-left: 15px;
    }

    /* Рекомендации на всю ширину */
    .recommendations-section.full-width {
        border-left-color: #007bff;
    }

    .recommendation-item.full-width {
        background: linear-gradient(135deg, #e7f3ff 0%, #d4edff 100%);
        padding: 20px;
        margin: 15px 0;
        border-radius: 10px;
        border-left: 4px solid #007bff;
        font-size: 1.1em;
        line-height: 1.6;
    }

    /* Прогресс развития на всю ширину */
    .growth-section.full-width {
        border-left-color: #20c997;
    }

    .gdd-progress.full-width {
        height: 30px;
        border-radius: 15px;
        margin: 20px 0;
        background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    }

    .gdd-progress-bar.full-width {
        font-size: 16px;
        font-weight: bold;
        background: linear-gradient(90deg, #28a745, #20c997);
    }

    /* Погодные предупреждения на всю ширину */
    .weather-alert.full-width {
        padding: 25px;
        margin: 20px 0;
        border-radius: 12px;
        font-size: 1.1em;
        border-left: 6px solid #ffc107;
    }

    /* Сетка для сравнения климата на всю ширину */
    .climate-comparison.full-width {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin: 20px 0;
    }

    .comparison-item.full-width {
        background: white;
        padding: 20px;
        border-radius: 10px;
        border: 1px solid #e9ecef;
        text-align: center;
    }

    /* Полные метеоданные на всю страницу */
    .full-weather-data {
        grid-column: 1 / -1;
        width: 100%;
        margin: 30px 0;
    }

    .weather-stats-grid.full-width {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
        margin: 25px 0;
    }

    /* Остальные стили остаются как были */
    .agro-weather-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 20px;
        margin-bottom: 25px;
    }

    .agro-weather-controls {
        display: grid;
        grid-template-columns: 1fr 1fr auto;
        gap: 20px;
        margin-bottom: 25px;
        align-items: end;
    }

    /* Исправляем наложение метеостанций */
    .agro-weather-station-picker {
        position: relative;
        z-index: 1000;
        margin-top: 20px;
    }

    .stations-grid {
        max-height: 400px;
        overflow-y: auto;
        border: 1px solid #e9ecef;
        border-radius: 8px;
        background: white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
}

/* Стили для очень больших экранов (более 1600px) */
@media (min-width: 1600px) {
    .analysis-section.full-width {
        padding: 40px;
    }

    .weather-stats-grid.full-width {
        grid-template-columns: repeat(6, 1fr);
    }

    .climate-comparison.full-width {
        grid-template-columns: repeat(4, 1fr);
    }

    .recommendation-item.full-width {
        padding: 25px;
        font-size: 1.2em;
    }
}

/* Стили для ультра-широких экранов (более 2000px) */
@media (min-width: 2000px) {
    .analysis-section.full-width {
        padding: 50px;
        margin: 40px 0;
    }

    .weather-stats-grid.full-width {
        grid-template-columns: repeat(8, 1fr);
    }

    .climate-comparison.full-width {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Дополнительные классы для полной ширины */
.full-width-section {
    grid-column: 1 / -1;
    width: 100%;
    margin: 30px 0;
}

.analysis-results-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Анимации для появления результатов */
.analysis-section.full-width {
    animation: slideInUp 0.6s ease-out;
}

.recommendation-item.full-width {
    animation: fadeInLeft 0.5s ease-out;
}

.weather-stat.full-width {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Улучшенные стили для конкретных типов анализа */
.risk-levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.risk-level-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.risk-level-item.low { border-left-color: #28a745; background: #f8fff9; }
.risk-level-item.medium { border-left-color: #ffc107; background: #fffbf0; }
.risk-level-item.high { border-left-color: #dc3545; background: #fff5f5; }

/* Стили для прогресса по фазам */
.growth-phase-timeline {
    display: flex;
    justify-content: space-between;
    margin: 25px 0;
    position: relative;
}

.growth-phase-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: #e9ecef;
    transform: translateY(-50%);
}

.phase-item {
    background: white;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    margin: 0 10px;
}

.phase-item.active {
    border-color: #28a745;
    background: #f8fff9;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.phase-item.completed {
    border-color: #20c997;
    background: #f0fdf9;
}

/* Enhanced Crop and Variety Selector Styles */
.agro-weather-variety-selector,
.agro-weather-phase-info,
.agro-weather-planting-date {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #e9ecef;
}

.agro-weather-variety-selector h4,
.agro-weather-phase-info h4,
.agro-weather-planting-date h4 {
    margin: 0 0 15px 0;
    color: #495057;
    font-size: 1.1em;
}

.agro-weather-crop-select,
.agro-weather-variety-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 14px;
    background: white;
    cursor: pointer;
}

/* Phases Grid */
.phases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.phase-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.phase-card.phase-active {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    transform: scale(1.05);
}

.phase-number {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    opacity: 0.9;
}

.phase-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.phase-gdd {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 5px;
}

.phase-desc {
    font-size: 12px;
    opacity: 0.75;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .phases-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .coordinate-inputs {
        grid-template-columns: 1fr;
    }
}

/* Planting Date Styles */
.planting-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.planting-controls .input-group label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.planting-controls .input-group input[type="date"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 14px;
}

.planting-controls .input-group small {
    display: block;
    margin-top: 5px;
    color: #6c757d;
    font-size: 12px;
}

.planting-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.info-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #dee2e6;
}

.info-card strong {
    display: block;
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-card span {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #28a745;
}

.current-phase-display {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    color: white;
}

.current-phase-display strong {
    color: rgba(255, 255, 255, 0.9);
}

.current-phase-display span {
    color: white;
}

.current-phase-display.highlight-phase {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    }
    50% {
        box-shadow: 0 8px 20px rgba(40, 167, 69, 0.6);
    }
}