/* General styling for menu links */
.menu-links {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu-links li {
    margin-bottom: 10px; /* Spacing between items */
}

.menu-links a {
    display: block;
    width: 100%; /* Full width */
    padding: 12px 15px; /* Add padding for better spacing */
    border: 1px solid #ddd; /* Light gray border */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    font-size: 16px; /* Slightly larger text */
    color: #333; /* Neutral text color */
    background-color: #f9f9f9; /* Light background */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover effect */
}

.menu-links a:hover {
    background-color: #007bff; /* Bootstrap primary color */
    color: white; /* Contrast text on hover */
    border-color: #0056b3; /* Darker border for hover */
}




    /* Style the form container */
    #trip-selector-form {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px auto;
        padding: 10px;
        width: 100%;
        max-width: 400px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        background-color: #f9f9f9;
    }
    
    /* Style the select element */
    #trip-selector {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
        background-color: #ffffff;
        color: #333;
        appearance: none; /* Remove default browser styles for dropdown */
        outline: none; /* Remove blue outline on focus */
        cursor: pointer;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }
    
    /* Hover effect for the dropdown */
    #trip-selector:hover {
        border-color: #007bff;
        box-shadow: inset 0 2px 4px rgba(0, 123, 255, 0.1);
    }
    
    /* Focus state for the dropdown */
    #trip-selector:focus {
        border-color: #007bff;
        box-shadow: 0 0 4px rgba(0, 123, 255, 0.5);
    }
    
    /* Style the option elements */
    #trip-selector option {
        padding: 10px;
        color: #333;
        background-color: #fff;
    }
    
    /* Placeholder option */
    #trip-selector option:first-child {
        color: #888;
    }
    
    /* Responsive Design */
    @media (max-width: 600px) {
        #trip-selector-form {
            padding: 5px;
            max-width: 300px;
        }
    
        #trip-selector {
            font-size: 14px;
            padding: 8px;
        }
    }