/* Styles pour la section de type de page */
.page-type-box {
    background-color: var(--color-bg-secondary);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-type-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.page-type-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.page-type-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

.page-type-badge.informational {
    background-color: #2196f3; /* Blue */
}

.page-type-badge.transactional {
    background-color: #f44336; /* Red */
}

.page-type-badge.navigational {
    background-color: #ff9800; /* Orange */
}

.page-type-badge.decisional {
    background-color: #9c27b0; /* Purple */
}

.page-type-badge.mixed {
    background-color: #009688; /* Teal */
}

.page-type-explanation {
    line-height: 1.6;
    color: var(--color-text);
}

.recommendation-box {
    background-color: var(--color-bg-secondary);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border-left: 4px solid var(--color-primary);
}

/* Les styles pour le bouton d'analyse ont été déplacés dans styles.css */

/* Styles pour l'entrée de mot-clé unique */
.keyword-input.single-keyword {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.keyword-input.single-keyword input {
    font-size: 1.1rem;
    padding: 0.8rem 1rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .page-type-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .page-type-badge {
        margin-top: 0.5rem;
    }
}
