/* style.css - Main stylesheet for the drop-off location portals */

/* Reset and basic styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

a {
    color: #0073aa;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
header {
    background-color: #ffffff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
}

header .logo img {
    height: 50px;
}

/* Main Content */
main {
    padding: 20px;
}

/* Form Styles */
form {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #cccccc;
    border-radius: 3px;
}

form button {
    background-color: #0073aa;
    color: #ffffff;
    padding: 10px 15px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

form button:hover {
    background-color: #005f8d;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    margin-bottom: 20px;
}

table th,
table td {
    padding: 10px;
    border: 1px solid #dddddd;
}

table th {
    background-color: #f7f7f7;
    text-align: left;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Footer */
footer {
    background-color: #ffffff;
    padding: 10px 20px;
    text-align: center;
    font-size: 14px;
}

/* Highlight Classes */
.red-highlight {
    background-color: #f8d7da !important;
}

.orange-highlight {
    background-color: #fff3cd !important;
}

.yellow-highlight {
    background-color: #fff8e1 !important;
}

/* Responsive */
@media (min-width: 768px) {
    .columns {
        display: flex;
        gap: 20px;
    }

    .column {
        flex: 1;
    }
}
