/* Estilos para el generador de gráficas de dona */

.donut-graphic-container {
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
}

.donut-graphic-title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.donut-graphic-controls {
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.donut-graphic-controls label {
    font-size: 12px;
    font-weight: bold;
    text-wrap: nowrap;
    color: #333;
}

.donut-graphic-controls select {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    min-width: 150px;
    background: white;
    color: #333;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.donut-graphic-controls select:hover {
    border-color: #999;
}

.donut-graphic-controls select:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
}

.donut-graphic-wrapper {
    position: relative;
    width: 100%;
    padding: 20px;
    margin: 0 auto;
}

.donut-graphic-canvas {
    width: 100% !important;
    height: 100% !important;
}

/* Responsive design */
@media (max-width: 768px) {
    .donut-graphic-controls {
        flex-direction: column;
        gap: 12px;
    }

    .donut-graphic-wrapper {
        padding: 15px;
    }

    .donut-graphic-controls select {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .donut-graphic-wrapper {
        padding: 10px;
    }
}
