/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #444;
    color: #333;
    text-align: center;
}

/* Header Styles */
header {
    padding: 20px;
    background-color: #444;
    color: white;
}
header .logo {
    max-width: 150px;
    margin-bottom: 15px;
    background-color: white; /* White box background */
    padding: 10px; /* Add padding for spacing around the logo */
    border: 1px solid #ccc; /* Light border for definition */
    border-radius: 8px; /* Rounded corners */
    display: inline-block; /* Ensure the box wraps tightly around the image */
}

/* Container Styles */
.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Form Styles */
form label {
    display: block;
    margin: 10px 0 5px;
    text-align: left;
    font-weight: bold;
}
form input, 
form select, 
form textarea, 
form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

form textarea {
    height: 120px; /* Adjust for 4-5 lines of visible text */
    resize: none; /* Prevent resizing */
}

form button {
    background-color: #444;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Success Message */
.success-message {
    margin-top: 20px;
    color: green;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    form input, 
    form select, 
    form textarea, 
    form button {
        padding: 8px;
    }
}
