.lcc-container-status {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.lcc-container-status h4 { color: white; margin: 0 0 15px 0; }
.lcc-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}
.lcc-status-card {
    background: rgba(255,255,255,0.2);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
}
.lcc-status-card .lcc-label { font-size: 12px; opacity: 0.9; display: block; }
.lcc-status-card .lcc-value { font-size: 20px; font-weight: bold; display: block; }
.lcc-progress-bar {
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
    height: 10px;
    margin: 15px 0;
    overflow: hidden;
}
.lcc-progress-fill {
    background: #4caf50;
    height: 100%;
    border-radius: 10px;
}
.lcc-warning { color: #ffeb3b !important; }
.lcc-note { font-size: 11px; opacity: 0.8; margin: 10px 0 0 0; }
.lcc-product-volume { margin: 15px 0; padding: 10px; background: #f8f9fa; border-radius: 6px; border-left: 4px solid #667eea; }
.lcc-order-shipping-info { margin: 20px 0; padding: 15px; background: #f8f9fa; border-radius: 8px; }


// ==============================================
// AGREGADO EN ACTUALIZACIÓN
// ==============================================

/* Widget de Estado de Contenedores */
.lcc-widget-container {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.lcc-widget-country {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 15px;
    transition: all 0.3s ease;
}

.lcc-widget-country:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #dee2e6;
}

.lcc-widget-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.lcc-flag {
    font-size: 24px;
}

.lcc-country-name {
    font-weight: bold;
    font-size: 16px;
    color: #2c3e50;
    flex: 1;
}

.lcc-container-type {
    background: #e9ecef;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #495057;
}

.lcc-widget-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.lcc-widget-stat {
    text-align: center;
}

.lcc-widget-stat .lcc-stat-label {
    display: block;
    font-size: 11px;
    color: #6c757d;
}

.lcc-widget-stat .lcc-stat-value {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #2c3e50;
}

.lcc-low-space {
    color: #dc3545 !important;
}

.lcc-widget-progress {
    background: #e9ecef;
    border-radius: 10px;
    height: 8px;
    margin: 12px 0;
    overflow: hidden;
}

.lcc-widget-progress-bar {
    background: linear-gradient(90deg, #28a745, #20c997);
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s ease;
}

.lcc-widget-footer {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #6c757d;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
}

.lcc-reserved {
    color: #fd7e14;
}

.lcc-widget-note {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    font-size: 11px;
    color: #6c757d;
    text-align: center;
    margin-top: 10px;
}

/* Todos los contenedores - Shortcode */
.lcc-all-containers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.lcc-country-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.lcc-country-card h3 {
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
}

.lcc-country-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.lcc-country-stats div {
    font-size: 14px;
}

.lcc-progress-bar-container {
    background: #e9ecef;
    border-radius: 10px;
    height: 10px;
    overflow: hidden;
}

.lcc-progress-fill-custom {
    background: linear-gradient(90deg, #28a745, #20c997);
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s ease;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    .lcc-widget-country, .lcc-country-card {
        background: #1e1e1e;
        border-color: #333;
    }
    .lcc-country-name, .lcc-country-card h3 {
        color: #e0e0e0;
    }
    .lcc-widget-note {
        background: #2d2d2d;
        color: #aaa;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .lcc-widget-stats, .lcc-country-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .lcc-all-containers {
        grid-template-columns: 1fr;
    }
}
