.perdeca-explanations-container {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.perdeca-explanations-title {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.perdeca-explanations-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.perdeca-tab-button {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.perdeca-tab-button:hover {
    background-color: #005177;
}

.perdeca-tab-button.active {
    background-color: #00a0d2;
}

.perdeca-explanations-content {
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.perdeca-explanation {
    display: none;
}

.perdeca-explanation.active {
    display: block;
}

.perdeca-explanation h3 {
    color: #0073aa;
}

@media (max-width: 600px) {
    .perdeca-explanations-tabs {
        flex-direction: column;
        align-items: center;
    }

    .perdeca-tab-button {
        width: 100%;
        max-width: 300px;
    }
}
