/**
 * WP Service Estimator - Frontend Styles
 */

/* Styly pro indikaci načítání ceny */
.wpse-live-price-display.wpse-is-loading {
    opacity: 0.5;
    cursor: progress;
}

/* Styly pro zobrazení chyby při výpočtu */
.wpse-live-price-display.wpse-has-error .wpse-price-value {
    color: #d63638; /* Červená barva pro chybu */
    font-size: 1rem;
    font-weight: normal;
}

/* ==========================================================================
   Order Tracking Page Styles
   ========================================================================== */

/* Animace a interaktivita pro karty s fotkami */
@keyframes wpseFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wpse-photo-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05) !important;
    transform: translateY(-2px);
}

.wpse-photo-card a:hover .wpse-photo-img {
    transform: scale(1.05);
}

.wpse-photo-card a:hover .wpse-photo-overlay {
    opacity: 1 !important;
}

.wpse-photo-desc-input:focus {
    background: #f0fdf4 !important;
    box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
}

.wpse-action-btn:hover {
    background: #e5e7eb !important;
}