/* Resetting box-sizing for all elements */
* {
    box-sizing: border-box;
}

/* Styling for the body of the page */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f8f4;
    color: #1f2937;
}

/* Container to limit the width of the content */
.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Styling for the site header */
.site-header {
    background-color: #2e7d32;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.site-header h1 {
    margin: 0 0 10px;
    font-size: 2.5rem;
}

.site-header p {
    margin: 0;
    font-size: 1.1rem;
}

/* Hero section style */
.hero {
    margin: 40px 0 20px;
    text-align: center;
}

.hero h2 {
    margin-bottom: 10px;
    color: #2e7d32;
}

/* Styling for search card (forms and inputs) */
.search-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.search-card h2 {
    margin-top: 0;
    color: #2e7d32;
}

/* Form group styles for spacing between form elements */
.form-group {
    margin-bottom: 18px;
}

/* Label styles */
label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

/* Styling for input elements */
input {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
}

/* Button styles */
button {
    background-color: #2e7d32;
    color: white;
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
}

button:hover {
    background-color: #256628;
}

/* Styling for select dropdown elements */
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
}

/* Styles for alert messages (error and success) */
.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.review {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.review strong {
    font-size: 1.2rem;
    color: #2e7d32;
}

.review p {
    font-size: 1rem;
    color: #333;
}

.review i {
    font-style: italic;
    color: #555;
}