/* Stil pentru note-ul de bun venit */
.welcome-note {
    background: #eef2f7;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #444;
    text-align: center;
    border-left: 4px solid #007bff;
}

/* Containerul cu butoane de op?iuni */
.chat-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
}

.chat-options p {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

/* Butoanele de selec?ie */
.opt-btn {
    background: white;
    border: 1px solid #007bff;
    color: #007bff;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.opt-btn i { font-size: 16px; }

.opt-btn:hover {
    background: #007bff;
    color: white;
}

/* Header-ul cu iconi?ã */
.header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}