/* Đặt kiểu font mặc định cho toàn bộ trang */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
}

/* Định dạng cho container chính */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Tiêu đề chính */
h1 {
    text-align: center;
    color: #333;
    font-size: 24px;
}

/* Định dạng cho form */
form {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

/* Định dạng cho textarea */
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    resize: vertical;
}

/* Định dạng cho nút submit */
input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

/* Hiển thị thông báo kết quả */
.message {
    background-color: #e0f7fa;
    color: #00695c;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 14px;
    white-space: pre-wrap; /* Giữ định dạng khi hiển thị */
}

/* Định dạng lỗi */
.message.error {
    background-color: #ffccbc;
    color: #d32f2f;
}
