/* Base styles */
body {
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #e0e0e0; /* Softer background */
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container styles */
.container {
    background-color: #ffffff;
    padding: 40px; /* More padding for spacious feel */
    border-radius: 12px; /* Slightly more rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Softer shadow for depth */
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
}

/* Image styles */
.container img {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

/* Heading styles */
h2 {
    margin-top: 0;
    font-size: 1.8rem; /* Larger font size for headings */
    color: #333; /* Darker heading color */
    text-align: center;
}

/* Form styles */
form {
    display: flex;
    flex-direction: column;
}

label {
    margin: 12px 0 6px;
    font-weight: bold; /* Bold labels for emphasis */
    color: #555;
}

/* Input, textarea, and select styles */
input,
textarea,
select {
    width: 100%; /* Ensure full width */
    padding: 14px;
    margin-bottom: 16px; /* More spacing */
    border: 1px solid #ccc; /* Standard border */
    border-radius: 8px; /* Rounded corners */
    font-size: 1rem; /* Consistent font size */
    box-sizing: border-box; /* Include padding in width */
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

input:focus,
textarea:focus,
select:focus {
    border-color: #007bff; /* Highlight on focus */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Soft focus glow */
}

/* Button styles */
button {
    padding: 14px; /* Larger button size */
    border: none;
    border-radius: 8px; /* Consistent rounded corners */
    background-color: #007bff; /* Button color */
    color: #ffffff; /* Text color */
    font-size: 1rem; /* Consistent font size */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth transitions */
}

button:hover {
    background-color: #0056b3; /* Darker on hover */
    transform: translateY(-2px); /* Subtle lift effect */
}

button:disabled {
    background-color: #ccc; /* Disabled state */
    cursor: not-allowed;
}

/* Reply section styles */
.reply-section {
    margin-top: 20px;
}

.reply {
    background-color: #f9f9f9; /* Slightly lighter for replies */
    padding: 14px;
    border-left: 6px solid #007bff; /* Accent color */
    margin-bottom: 12px;
    border-radius: 8px; /* Rounded corners */
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 20px; /* Reduced padding for smaller screens */
    }

    h2 {
        font-size: 1.5rem; /* Adjusted font size */
    }

    button {
        font-size: 0.875rem; /* Adjusted button size */
        padding: 10px;
    }

    input,
    textarea,
    select {
        font-size: 0.875rem; /* Adjusted input size */
        padding: 12px;
    }
}