html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: #f0f8ff;
}

.container {
    min-height: 100vh; /* vh = 1% de la hauteur de la fenêtre */
    display: flex; /* Optionnel : Pour centrer verticalement */
    flex-direction: column; /* Optionnel : Pour aligner les éléments en colonne */
}

.chat-bubble {
    padding: 10px 15px;
    margin: 10px 0;
    border-radius: 15px;
    word-wrap: break-word;
}

.bot-bubble {
    /*background-color: #e9ecef;*/
    /*color: #333;*/
    background-color: #0057a8;
    color: #fff;
    text-align: left;
    align-self: flex-start;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-outline-secondary {
    /*border-color: #ffd700;*/
    border: 0;
    color: #0057a8;
}

.btn-outline-secondary:hover {
    background-color: #ffd700;
    color: #0057a8;
}

.btn-primary {
    background: #0057a8;
    color: #ffd700;
}

.btn-primary:hover {
    background: #0057a8;
    color: #ffd700;
}

/* summary */
.summary {
    /*border: 2px solid #ffd700;*/
    color: #ffd700;
}

/* rating container */
.rating {
    display: inline-flex;
    gap: 5px;
    cursor: pointer;
    font-size: 2rem;
}

.rating .bi {
    color: #ccc; /* Couleur des étoiles non sélectionnées */
    transition: color 0.3s;
}

.rating .bi.selected {
    color: #f5c518; /* Couleur des étoiles sélectionnées */
}

.rating .bi:hover,
.rating .bi:hover .bi {
    color: #f5c518; /* Couleur des étoiles au survol */
}

.rating .bi.filled {
    color: #f5c518; /* Couleur des étoiles sélectionnées */
}
