
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

* {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}
    
/* Content area styling */
.content {
    flex: 1; /* Allows the content area to grow and push footer to bottom */
    padding: 0 20px; /* Left and right padding */
    padding-bottom: 90px; /* Bottom padding */
    /* You can set padding-top to see if it's being overridden */
    padding-top: 20px; /* Optional: Add top padding for testing */
}

h1 {
    text-align: center;
    font-size: 32px;
    color: #333;
    margin: 20px 0;
    padding: 20px;
}

p {
    text-align: center;
    margin-top: 10px;
    padding: 20px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-row .form-group {
    flex-basis: calc(50% - 10px);
}

.form-row .form-group:last-child {
    margin-right: 0;
}

.form-row:last-child {
    margin-bottom: 0;
}


form {
    margin: 0 auto;
    background-color: #ffffffbc;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

fieldset {
    border: none;
    padding: 0;
    margin-bottom: 20px;
}

legend {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #649261;
    /* New color */
}

label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #99BFA2;
    /* New color */
}

input[type="submit"],
input[type="reset"] {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

input[type="submit"] {
    background-color: #779D9F;
    /* New color */
    color: #ffffffc5;
}

input[type="reset"] {
    background-color: #ADCEB4;
    /* New color */
    color: #fff;
    margin-left: 10px;
}

.welcome-message hr {
    width: 50%;
    margin: 10px auto;
    border: 1px solid #649261;
    /* New color */
}

.carousel {
    display: flex;
    overflow: auto;
}

.carousel-item {
    min-width: 100%;
}

.carousel-item img {
    max-height: 300px; /* Adjust as needed */
    width: auto;
    margin: 0 auto; /* Center align if necessary */
}
.top-picks {
    margin-top: 20px;
}

.top-picks-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.top-pick {
    width: 24%;
    margin-bottom: 20px;
}
.top-pick img {
    max-height: 200px; /* Adjust as needed */
    width: auto;
    margin-bottom: 10px; /* Optional: Adjust spacing between items */
}
form button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #779D9F; /* Match your submit button color */
    color: #ffffffc5; /* Match your submit button text color */
}