/**
 * Wszystkie style CSS dla publicznej strony.
 *
 * @package    WF_Agro_Prices
 * @subpackage WF_Agro_Prices/public/css
 */

/* Kontener wykresu */
.wf-agro-prices-container {
    margin: 20px 0;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}

/* Tytuł wykresu */
.wf-agro-prices-chart-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

/* Wrapper wykresu */
.wf-agro-prices-chart-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
}

/* Komunikaty o błędach */
.wf-agro-prices-error {
    padding: 10px 15px;
    margin: 10px 0;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    color: #721c24;
}

/* Powiadomienia */
.wf-agro-prices-notice {
    padding: 10px 15px;
    margin: 10px 0;
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 4px;
    color: #856404;
}

/* Formularz filtrowania */
.wf-agro-prices-filter-form {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

.wf-agro-prices-filter-form .form-row {
    margin-bottom: 10px;
}

.wf-agro-prices-filter-form label {
    display: inline-block;
    width: 150px;
    font-weight: bold;
}

.wf-agro-prices-filter-form select,
.wf-agro-prices-filter-form input[type="date"] {
    width: 200px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.wf-agro-prices-filter-form button {
    padding: 8px 15px;
    background-color: #0073aa;
    border: none;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
}

.wf-agro-prices-filter-form button:hover {
    background-color: #005177;
}

/* Legenda wykresu */
.wf-agro-prices-legend {
    margin-top: 15px;
    text-align: center;
}

.wf-agro-prices-fullscreen-btn,
.wf-agro-prices-download-btn {
    position: absolute;
    top: 86px;
    padding: 5px 15px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    z-index: 1000;
    font-size: 14px;
    width:150px;
    transition: all 0.3s ease;
}

.wf-agro-prices-fullscreen-btn {
    right: 11px;
}

.wf-agro-prices-download-btn {
    left: 42px;
}

.wf-agro-prices-fullscreen-btn:hover,
.wf-agro-prices-download-btn:hover {
    background-color: #333333;
}

.wf-agro-prices-legend-item {
    display: inline-block;
    margin-right: 15px;
}

.wf-agro-prices-legend-color {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 5px;
    border-radius: 2px;
}

/* Tooltip */
.wf-agro-prices-tooltip {
    position: absolute;
    display: none;
    padding: 8px 12px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    pointer-events: none;
    z-index: 1000;
}

/* Ładowanie */
.wf-agro-prices-loading {
    position: relative;
    min-height: 100px;
}

.wf-agro-prices-loading:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -15px;
    margin-left: -15px;
    width: 30px;
    height: 30px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: wf-agro-prices-spin 2s linear infinite;
}

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

/* Klikalny wykres */
.wf-agro-prices-container.clickable {
    cursor: pointer;
}

/* Responsywność */
@media screen and (max-width: 600px) {
    .wf-agro-prices-filter-form label {
        display: block;
        width: 100%;
        margin-bottom: 5px;
    }
    
    .wf-agro-prices-filter-form select,
    .wf-agro-prices-filter-form input[type="date"] {
        width: 100%;
    }
}