body { font-family: Arial, sans-serif; text-align: center; margin: 0; padding: 0; background-color: #f4f4f4; }

h2 { margin-top: 20px; color: #333; }

#chatbox { width: 50%; margin: 20px auto; background-color: white; border: 1px solid #ccc; border-radius: 5px; padding: 10px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }

#messages { min-height: 200px; border-bottom: 1px solid #ddd; padding: 10px; overflow-y: auto; text-align: left; }

#question { width: 80%; padding: 10px; margin: 10px 0; font-size: 16px; border: 1px solid #ccc; border-radius: 5px; }

button { padding: 10px 20px; font-size: 16px; background-color: #4CAF50; color: white; border: none; border-radius: 5px; cursor: pointer; }

button:hover { background-color: #45a049; }
/* Ümumi tərtibat */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Bütün səhifənin fonu və yazı rəngi */
body {
    background-color: #f0f0f0; /* Boz fon */
    color: #333333; /* Qara yazılar */
    line-height: 1.6;
}

/* Header tərtibatı */
header {
    background-color: #333333;
    color: white;
    padding: 10px 0;
}

header nav ul {
    list-style: none;
    text-align: center;
}

header nav ul li {
    display: inline;
    margin-right: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

/* Kontent sahəsi */
.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    font-weight: bold;
    margin-bottom: 5px;
}

form input {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    padding: 12px;
    background-color: #333333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #444444;
}

/* Footer tərtibatı */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333333;
    color: white;
    position: fixed;
    width: 100%;
    bottom: 0;
}

footer p {
    font-size: 14px;
}
