
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.tabs {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 12px;
    cursor: pointer;
    border: none;
    background: #f5f5f5;
    font-weight: bold;
    font-size: 16px;
    border-radius: 12px 12px 0 0;
}

    .tab.active {
        background: white;
        border-bottom: 2px solid green;
    }

.search-box {
    display: none;
    flex-wrap: wrap;
    gap: 10px;
}

    .search-box.active {
        display: flex;
    }

.search-input {
    flex: 2;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.dropdown {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.location-btn {
    flex: 1;
    background: #f5f5f5;
    color: #555;
    border: 1px solid #ddd;
}

.custom-btn {
    flex: 1;
    background: green;
    color: white;
    font-weight: bold;
    border: none;
}

.search-btn {
    flex: 1;
    background: green;
    color: white;
    font-weight: bold;
}
.btn-volg-route {
    background-color: #1e6c38; /* Dark green color from the image */
    color: white;
    border-radius: 5px; /* Adjust if needed for more or less rounded corners */
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border: 1px solid #1e6c38;
}

    .btn-volg-route:hover {
        background-color: #1a5b2e; /* Slightly darker green on hover */
        color: white;
        text-decoration: none;
    }
