/* Stiluri pentru containerul widget-ului */
.chat-widget-container {
    background-color: #ffffff;
    width: 400px;
    height: 400px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: auto;
    margin: auto;
    box-sizing: border-box;
}

/* Stiluri pentru titlu */
.chat-widget-container h2 {
    margin-bottom: 15px;
    color: #333;
    font-size: 18px;
    font-weight: bold;
}

/* Stiluri pentru input text */
.chat-widget-container input[type="text"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Stiluri pentru butoane de submit */
.chat-widget-container button {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

/* Efect de hover pe butoane */
.chat-widget-container button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Stiluri pentru mesajul de eroare */
.widget-error-message {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
    display: none;
}
