/* /Layout/MainLayout.razor.rz.scp.css */
/* /Layout/NavMenu.razor.rz.scp.css */
/* Base styles (mobile first) */
.mobile-navbar[b-j5518nm3vt] {
    background-color: #1e1e2f;
    padding: 0.5rem 1rem;
    color: white;
}

.nav-header[b-j5518nm3vt] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.nav-logo[b-j5518nm3vt] {
    font-size: 1.2rem;
    font-weight: bold;
    width:100%;
}

.nav-toggle[b-j5518nm3vt] {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .nav-toggle .bar[b-j5518nm3vt] {
        width: 25px;
        height: 3px;
        background-color: white;
        border-radius: 2px;
    }

/* Mobile menu: hidden by default, full width when open */
.nav-links[b-j5518nm3vt] {
    display: none;
    flex-direction: column;
    gap: 0;
    margin-top: 0.5rem;
    width: 100%; /* full width */
}

.nav-links.show-menu[b-j5518nm3vt] {
    display: flex;
}

.nav-links li[b-j5518nm3vt] {
    list-style: none;
}

.nav-links a[b-j5518nm3vt] {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    padding: 0.75rem 1rem; /* full width clickable area */
    display: block;
    transition: background 0.3s ease, color 0.3s ease;
}

    .nav-links a:hover[b-j5518nm3vt] {
        color: #00bcd4;
        background-color: rgba(255,255,255,0.05); /* subtle highlight */
    }

/* Desktop styles */
@media (min-width: 1024px) {
    .nav-toggle[b-j5518nm3vt] {
        display: none;
    }

    .nav-header[b-j5518nm3vt] {
        display: flex;
        justify-content: space-between; /* logo left, links right */
        align-items: center;
    }

    .nav-links[b-j5518nm3vt] {
        display: flex !important;
        flex-direction: row;
        gap: 1.5rem;
        margin: 0;
        margin-right: 10px;
        width: auto; /* only needed for desktop */
    }

        .nav-links a[b-j5518nm3vt] {
            padding: 0;
            white-space: nowrap;
        }
}

/* Mobile styles */
@media (max-width: 768px) {
    .nav-header[b-j5518nm3vt] {
        flex-direction: column; /* stack logo and menu */
        align-items: flex-start;
        
    }

    /* Hamburger */
.nav-toggle[b-j5518nm3vt] {
    position: absolute; /* float on top-right */
    top: 10px;          /* adjust as needed */
    right: 20px;        /* adjust as needed */
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

    /* Wrap links in a separate container if needed */
    .nav-links[b-j5518nm3vt] {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
        margin-right: 0px;
    }

        .nav-links.show-menu[b-j5518nm3vt] {
            display: flex;
        }
}
/* /Pages/AboutUS.razor.rz.scp.css */
/* Global Styles */
*[b-0xzrtb618n] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-0xzrtb618n] {
    line-height: 1.6;
    color: #333;
    background: #fafafa;
   
}

/* Containers */
.container[b-0xzrtb618n] {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Hero Section */
.hero[b-0xzrtb618n] {
    position: relative;
    height: 70vh;
    background-image: url('images/bck_grd_image.png');
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay[b-0xzrtb618n] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
}

.hero-content[b-0xzrtb618n] {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero h1[b-0xzrtb618n] {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero p[b-0xzrtb618n] {
    font-size: 1.25rem;
}

/* Mission Section */
.mission[b-0xzrtb618n] {
    padding: 4rem 0;
    background: #fff;
    text-align: center;
}

    .mission h2[b-0xzrtb618n] {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        color: #222;
    }

    .mission p[b-0xzrtb618n] {
        max-width: 800px;
        margin: auto;
        font-size: 1.1rem;
        color: #555;
    }

/* Cards Section */
.cards[b-0xzrtb618n] {
    padding: 4rem 0;
    background: #f4f6f9;
}

.grid[b-0xzrtb618n] {
    display: grid;
    gap: 2rem;
}

.cards .grid[b-0xzrtb618n] {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card[b-0xzrtb618n] {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover[b-0xzrtb618n] {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    }

.card-icon[b-0xzrtb618n] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card h3[b-0xzrtb618n] {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: #111;
}

/* Image Grid Section */
.images[b-0xzrtb618n] {
    padding: 4rem 0;
}

.images-grid[b-0xzrtb618n] {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.image-card[b-0xzrtb618n] {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

    .image-card img[b-0xzrtb618n] {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .image-card:hover img[b-0xzrtb618n] {
        transform: scale(1.08);
    }
/* Upcoming Developments Section */
.upcoming[b-0xzrtb618n] {
    padding: 4rem 0;
    background: #fff;
    text-align: center;
}

    .upcoming h2[b-0xzrtb618n] {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #222;
    }

    .upcoming .subtitle[b-0xzrtb618n] {
        max-width: 700px;
        margin: auto;
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 3rem;
    }

/* Timeline Style */
.timeline[b-0xzrtb618n] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    margin: 0 auto;
    max-width: 700px;
}

    .timeline[b-0xzrtb618n]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 20px;
        width: 2px;
        height: 100%;
        background: #e0e0e0;
    }

.timeline-item[b-0xzrtb618n] {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.timeline-dot[b-0xzrtb618n] {
    width: 14px;
    height: 14px;
    background: #0077ff;
    border-radius: 50%;
    margin-right: 1rem;
    position: relative;
    top: 5px;
    flex-shrink: 0;
}

.timeline-content[b-0xzrtb618n] {
    text-align: left;
    background: #f9f9f9;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    flex: 1;
}

    .timeline-content h3[b-0xzrtb618n] {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        color: #111;
    }

    .timeline-content p[b-0xzrtb618n] {
        color: #555;
        font-size: 0.95rem;
    }

/* Mobile */
@media (max-width: 768px) {
    .timeline[b-0xzrtb618n]::before {
        left: 10px;
    }

    .timeline-dot[b-0xzrtb618n] {
        margin-right: 0.8rem;
    }
}

/* Footer */
footer[b-0xzrtb618n] {
    background: #111;
    color: #ccc;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
}

    footer p[b-0xzrtb618n] {
        font-size: 0.95rem;
    }

/* Responsive Typography */
@media (max-width: 768px) {
    .hero h1[b-0xzrtb618n] {
        font-size: 2.2rem;
    }

    .hero p[b-0xzrtb618n] {
        font-size: 1rem;
    }
}
/* /Pages/Home.razor.rz.scp.css */
*[b-itakzqhkj6] {
    box-sizing: border-box;
}

html[b-itakzqhkj6], body[b-itakzqhkj6] {
    height: 100%;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    background-color: #f0f2f5;
}

.container[b-itakzqhkj6] {
    display: flex;
    height: 99vh;
    align-items: center;
    justify-content: center;
    gap: 20px; /* space between map and tabs */
    padding: 10px 20px; /* horizontal padding for container */
    box-sizing: border-box;
    background-image: url('images/bck_grd_image.png');
    font-family: 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    border-top:solid;
}

/* Map Section */
.map-container[b-itakzqhkj6] {
    flex: 1 1 auto; /* flex-grow so it expands */
    height: 100%;
    border-radius: 12px;
    overflow: hidden; /* clip anything overflowing */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

    .map-container iframe[b-itakzqhkj6] {
        width: 100%;
        height: 100%;
        border: none;
        display: block;
    }

.tabs-container[b-itakzqhkj6] {
    flex: 0 0 25%; /* fixed 25% width */
    height: 100%; /* match container height */
    background-color: #f9fafb;
    display: flex;
    flex-direction: column;
    border: 2px solid #cbd5e1;
    overflow-y: auto;
    gap: 12px;
    box-shadow: inset 4px 0 8px rgba(0, 0, 0, 0.02);
    border-radius: 12px;
}

.tab-buttons[b-itakzqhkj6] {
    display: flex;
    border-bottom: 2px solid #c7d2fe;
    background-color: #f8fafc;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    height: auto;
    min-height: 48px;
}

.tab-buttons button[b-itakzqhkj6] {
    flex: 1;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #374151;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-buttons button:hover[b-itakzqhkj6] {
    background-color: #e0e7ff;
    color: #1e40af;
}

.tab-buttons button.active[b-itakzqhkj6] {
    background-color: #e0e7ff;
    color: #1e3a8a;
    border-bottom: 3px solid #3b82f6;
    font-weight: 700;
}

.tab-content[b-itakzqhkj6] {
    flex-grow: 1;
    display: none;
    padding: 24px;
    overflow-y: auto;
    background-color: #f9fafb;
    border-radius: 0 0 12px 12px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

    .tab-content.active[b-itakzqhkj6] {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }


.route-dropdown[b-itakzqhkj6] {
    padding: 10px 14px;
    font-size: 16px;
    width: 100%;
    margin-top: 12px;
    border-radius: 8px;
    border: 1px solid #a5b4fc;
    background-color: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
    cursor: pointer;
}

    .route-dropdown:focus[b-itakzqhkj6] {
        outline: none;
        border-color: #007bff;
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
    }

.route-buttons[b-itakzqhkj6] {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.address-list-wrapper[b-itakzqhkj6] {
    position: relative;
    margin-bottom: 20px;
    border-top: 2px solid #dcdcdc;
}

.route-selection-row[b-itakzqhkj6] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.route-label[b-itakzqhkj6] {
    font-weight: 600;
    white-space: nowrap;
}


.address-input:focus[b-itakzqhkj6] {
    border-color: #4A90E2;
    box-shadow: 0 0 4px rgba(74, 144, 226, 0.3);
    outline: none;
}

.address-input[b-itakzqhkj6]::placeholder {
    color: #aaa;
}

.start-location-container[b-itakzqhkj6] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 20px;
}

.start-input[b-itakzqhkj6] {
    padding: 8px;
    font-size: 15px;
    border: 1px solid #a5b4fc;
    border-radius: 6px;
    resize: vertical;
}

.location-btn[b-itakzqhkj6] {
    padding: 8px;
    font-size: 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.address-list[b-itakzqhkj6] {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 24px;
    margin-top: 24px;
}

.address-item[b-itakzqhkj6] {
    display: flex;
    align-items: flex-start; /* Align at top */
    justify-content: flex-start; /* Items start from left */
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    gap: 12px; /* space between checkbox and content */
}
.scroll-container[b-itakzqhkj6] {
    max-width: 800px;
    margin: 20px auto;
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    overflow-y: auto;
}

.route-report-title[b-itakzqhkj6] {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #007bff;
    border-bottom: 3px solid #f0f0f0;
    padding-bottom: 6px;
}

.route-summary[b-itakzqhkj6] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.summary-item[b-itakzqhkj6] {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .summary-item strong[b-itakzqhkj6] {
        color: #007bff;
    }

    .summary-item a[b-itakzqhkj6] {
        color: #0078d7;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }

        .summary-item a:hover[b-itakzqhkj6] {
            color: #0056a3;
            text-decoration: underline;
        }

.map-icon[b-itakzqhkj6] {
    width: 18px;
    height: 18px;
    margin-right: 4px;
    vertical-align: middle;
}

.download-link[b-itakzqhkj6] {
    background: #0078d7;
    color: #fff !important;
    margin-left: 10px;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

    .download-link:hover[b-itakzqhkj6] {
        background: #0056a3;
    }
.edit-route-btn-inline[b-itakzqhkj6],
.add-address-btn-inline[b-itakzqhkj6] {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    font-size: 85%;
    font-weight: 600;
    color: white;
    background-color: #007acc; /* your blue background */
    border: 1px solid #007acc;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    user-select: none;
    flex-basis: 100%; /* makes it go to its own line inside flex container */
    justify-content: center;
    margin-bottom: 5px;
}

    .add-address-btn-inline:hover[b-itakzqhkj6] {
        background-color: #218838; /* darker blue on hover */
        border-color: #005f99;
    }

.add-address-input-row[b-itakzqhkj6] {
    margin-top: 24px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column; /* stack inputs vertically for better mobile UX */
    gap: 12px;
}


.add-address-input[b-itakzqhkj6] {
    flex: 1;
    padding: 6px 10px;
    border: 1px solid #a5b4fc;
    border-radius: 6px;
}

.plus-icon[b-itakzqhkj6] {
    color: green;
    margin-right: 6px;
}

.confirm-add-btn[b-itakzqhkj6],
.cancel-add-btn[b-itakzqhkj6] {
    margin-bottom: 25px;
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.confirm-add-btn[b-itakzqhkj6] {
    background-color: #28a745;
    color: white;
}

.cancel-add-btn[b-itakzqhkj6] {
    background-color: #dc3545;
    color: white;
}

.remove-address-btn:hover[b-itakzqhkj6] {
    color: #c0392b;
}

.address-list ul[b-itakzqhkj6] {
    list-style-type: none;
    padding-left: 0;
    margin: 0 0 20px 0;
}

.address-list li[b-itakzqhkj6] {
    padding: 10px 12px;
    border-bottom: 2px solid #dcdcdc;
    font-size: 16px;
    color: #333;
}

    .address-list li:last-child[b-itakzqhkj6] {
        border-bottom: none;
    }

.checkbox-wrapper[b-itakzqhkj6] {
    flex-shrink: 0; /* Prevent checkbox from shrinking */
    margin-top: 2px; /* Align visually at top */
}

.checkbox-left[b-itakzqhkj6] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    border: 2px solid #a5b4fc;
    border-radius: 4px;
    position: relative;
    transition: all 0.2s ease-in-out;
}

    .checkbox-left:checked[b-itakzqhkj6] {
        background-color: #4CAF50;
        border-color: #4CAF50;
    }

        .checkbox-left:checked[b-itakzqhkj6]::after {
            content: "";
            position: absolute;
            left: 4px;
            top: 0px;
            width: 5px;
            height: 10px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

.address-text[b-itakzqhkj6] {
    flex-grow: 1;
}

.miles-text[b-itakzqhkj6] {
    margin-left: 15px;
    color: #555;
}

.start-route-btn[b-itakzqhkj6] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

    .start-route-btn:hover[b-itakzqhkj6] {
        background-color: #218838;
    }

.delete-btn:disabled[b-itakzqhkj6] {
    opacity: 0.5;
    cursor: not-allowed;
}

.delete-btn[b-itakzqhkj6] {
    float: right;
    background: transparent;
    border: none;
    color: #888;
    font-size: 20px;
    cursor: pointer;
    margin-bottom: 10px;
    margin-left: auto;
    display: block;
}

    .delete-btn:hover[b-itakzqhkj6] {
        color: #218838;
    }
/* Buttons */
.addaddressbtn[b-itakzqhkj6],
.add-btn[b-itakzqhkj6],
form button[type="submit"][b-itakzqhkj6] {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin: 10px 10px 10px 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    color: white;
    display: inline-block;
    user-select: none;
}

/* Specific backgrounds */
.add-btn[b-itakzqhkj6] {
    background-color: #007acc; /* bright blue */
}



.add-address-row[b-itakzqhkj6] {
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 10px 0px;
}

.add-address-input-row[b-itakzqhkj6] {
    display: flex;
    align-items: center; /* vertically center input and buttons */
    gap: 10px;
    position: relative; /* for suggestions absolute positioning */
}

.address-input-group[b-itakzqhkj6] {
    position: relative;
    flex: 1; /* take all available horizontal space */
    width: 100%;
}


.confirm-add-btn[b-itakzqhkj6],
.cancel-add-btn[b-itakzqhkj6] {
    white-space: nowrap;
}

.overlay[b-itakzqhkj6] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 99vh; /* fills the viewport height */
    width: 100%; /* make sure it spans the full width */
    background-image: url('images/bck_grd_image.png');
    background-size: cover; /* scales image to fill screen */
    padding: 20px;
}

/* Auth card */
.auth-box[b-itakzqhkj6] {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 380px;
    text-align: center;
    animation: fadeIn-b-itakzqhkj6 0.4s ease;
}

    .auth-box h2[b-itakzqhkj6] {
        margin-bottom: 1.5rem;
        font-size: 1.6rem;
        color: #1e3c72;
    }

/* Inputs */
.input[b-itakzqhkj6] {
    width: 100%;
    padding: 12px 15px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: 0.3s;
}

    .input:focus[b-itakzqhkj6] {
        border-color: #0072ff;
        outline: none;
        box-shadow: 0 0 5px rgba(0, 114, 255, 0.5);
    }

/* Primary button */
.btn-primary[b-itakzqhkj6] {
    width: 100%;
    padding: 12px;
    margin-top: 1rem;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

    .btn-primary:hover[b-itakzqhkj6] {
        transform: translateY(-2px);
        opacity: 0.9;
    }

/* Text buttons */
.link-btn[b-itakzqhkj6],
.toggle-btn[b-itakzqhkj6] {
    background: none;
    border: none;
    margin-top: 1rem;
    color: #0072ff;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
}
.guest-btn[b-itakzqhkj6] {
    width: 100%;
    padding: 12px;
    margin-top: 1rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #f5f5f5;
    color: #333;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .guest-btn:hover[b-itakzqhkj6] {
        background: #e0e0e0;
    }
.toggle-btn[b-itakzqhkj6] {
    display: block;
    width: 100%;
    margin-top: 0.8rem;
    font-weight: 500;
}


@keyframes fadeIn-b-itakzqhkj6 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.route-name-group[b-itakzqhkj6] {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    max-width: 400px;
}


.route-name-input[b-itakzqhkj6] {
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    border: 1px solid #a5b4fc;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

    .route-name-input:focus[b-itakzqhkj6] {
        border-color: #0078d4;
        box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.2);
    }

.underline[b-itakzqhkj6] {
    margin-top: 1rem;
    height: 3px;
    background-color: #0078d4;
    width: 100%;
}

.address-item-inline[b-itakzqhkj6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #a5b4fc;
}

    .address-item-inline span[b-itakzqhkj6] {
        flex: 1;
    }

.address-entry[b-itakzqhkj6] {
    list-style: none;
}

.address-block[b-itakzqhkj6] {
    position: relative; /* Needed for absolute positioning inside */
}

.remove-address-btn[b-itakzqhkj6] {
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #888;
    left: 98%;
    top: -15%;
}

    .remove-address-btn:hover[b-itakzqhkj6] {
        color: #d00;
    }

.address-input[b-itakzqhkj6] {
    width: 100%;
    padding: 8px;
    font-size: 15px;
    border: 1px solid #a5b4fc;
    border-radius: 6px;
    overflow: hidden;
    resize: none;
}

.start-input[b-itakzqhkj6] {
    padding: 8px;
    font-size: 15px;
    border: 1px solid #a5b4fc;
    border-radius: 6px;
    resize: vertical;
}

.address-input:focus[b-itakzqhkj6] {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.suggestions-list[b-itakzqhkj6] {
    list-style: none;
    margin: 4px 0 0 0;
    padding: 0;
    border: 1px solid #a5b4fc;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
}

    .suggestions-list li[b-itakzqhkj6] {
        padding: 8px 12px;
        cursor: pointer;
        border-bottom: 1px solid #eee;
        transition: background-color 0.2s ease;
    }


        .suggestions-list li:last-child[b-itakzqhkj6] {
            border-bottom: none;
        }

        .suggestions-list li:hover[b-itakzqhkj6] {
            background-color: #f0f8ff;
        }

.map-placeholder-img[b-itakzqhkj6] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.drop-pin-marker[b-itakzqhkj6] {
    width: 30px;
    height: 30px;
    background-image: url('https://docs.mapbox.com/mapbox-gl-js/assets/custom_marker.png');
    background-size: contain;
    background-repeat: no-repeat;
    animation: drop-in-b-itakzqhkj6 0.5s ease-out forwards;
    transform: translateY(-100px); /* Start higher */
}

@keyframes drop-in-b-itakzqhkj6 {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.error-text[b-itakzqhkj6] {
    color: #d93025;
    background-color: #fff0f0;
    border: 1px solid #d93025;
    padding: 5px 5px;
    margin-top: 10px;
    border-radius: 6px;
    text-align: center; /* ?? Center the text */
}

.group-by-container[b-itakzqhkj6] {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin-bottom: 20px;
}

    .group-by-container label[b-itakzqhkj6] {
        margin-bottom: 8px;
    }

.group-by-row[b-itakzqhkj6] {
    display: flex;
    flex-wrap: wrap; /* allows breaking on smaller screens */
    gap: 0.5rem; /* spacing between dropdown and button */
    margin-top: 0.5rem;
}

.group-by-select[b-itakzqhkj6] {
    padding: 10px 14px;
    border-radius: 8px;
    flex: 1 1 200px; /* grow to available width, shrink if needed */
    min-width: 150px;
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #a5b4fc;
}

.group-by-btn[b-itakzqhkj6] {
    padding: 10px 16px;
    background-color: #007bff;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    white-space: nowrap; /* Keep text on one line */
    font-size: 14px;
    font-weight: 400;
}

    .group-by-btn:hover[b-itakzqhkj6] {
        background-color: #218838;
    }

.option[b-itakzqhkj6] {
    width: 30%;
    font-size: 0.9rem;
    padding: 6px 10px;
    color: #333;
    background-color: #fff;
}

.or-separator[b-itakzqhkj6] {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
}

    .or-separator hr[b-itakzqhkj6] {
        flex: 1;
        border: none;
        border-top: 2px solid #007acc;
    }

.or-label[b-itakzqhkj6] {
    margin: 0 1rem;
    font-weight: bold;
    color: black;
}

.group-desc[b-itakzqhkj6] {
    font-size: 0.9rem;
    color: #777;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

.map-links[b-itakzqhkj6] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 4px;
    cursor: pointer;
}

.map-link[b-itakzqhkj6] {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.map-links a[b-itakzqhkj6] {
    font-size: 0.85rem;
    color: #0066cc;
    text-decoration: none;
    word-break: break-all; /* Makes long URLs wrap correctly */
}

    .map-links a:hover[b-itakzqhkj6] {
        text-decoration: underline;
    }




    .route-summary span[b-itakzqhkj6] {
        white-space: nowrap;
    }

    .route-summary a.full-route-link[b-itakzqhkj6] {
        color: #3182ce;
        text-decoration: none;
        padding: 6px 12px;
        border: 1px solid #3182ce;
        border-radius: 6px;
        transition: background-color 0.25s ease, color 0.25s ease;
    }

        .route-summary a.full-route-link:hover[b-itakzqhkj6],
        .route-summary a.full-route-link:focus[b-itakzqhkj6] {
            background-color: #3182ce;
            color: #fff;
            outline: none;
        }


.address-index[b-itakzqhkj6] {
    font-size: 14px;
    font-weight: 600;
    color: #007bff;
    background-color: #f0f0f0;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}


.success-message[b-itakzqhkj6] {
    background-color: #e6ffed;
    color: #027a48;
    border: 1px solid #b7ebc6;
    padding: 12px 20px;
    margin: 10px 0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 6px rgba(0, 128, 0, 0.1);
}

.refresh-button[b-itakzqhkj6] {
    background-color: transparent;
    color: #2563eb; /* Tailwind's blue-600 */
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    border: none;
    border-radius: 8px;
    margin-left: 4px;
}

    .refresh-button:hover[b-itakzqhkj6] {
        background-color: rgba(37, 99, 235, 0.1); /* faint blue background */
        color: #1d4ed8; /* Tailwind's blue-700 */
    }

    .refresh-button:active[b-itakzqhkj6] {
        background-color: rgba(37, 99, 235, 0.2);
        color: #1e40af; /* Tailwind's blue-800 */
    }


.tab-header[b-itakzqhkj6] {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #ccc;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.tab-button[b-itakzqhkj6] {
    padding: 10px 20px;
    width: 45%;
    border: none;
    background-color: #f1f1f1;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    margin-right: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tab-button:hover[b-itakzqhkj6] {
    background-color: #e2e6ea;
}

.tab-button.active[b-itakzqhkj6] {
    background-color: #4285f4;
    color: white;
    border-bottom: 2px solid white; /* makes active tab blend into content */
}

.route-instruction[b-itakzqhkj6] {
    font-size: 0.95rem;
    color: #4b5563; /* Tailwind slate-600 tone */
    margin-bottom: 12px;
}

h2[b-itakzqhkj6] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b; /* Slate-800 */
    border-radius: 10px;
    margin: 0;
    margin-bottom: 15px;
}


label[b-itakzqhkj6] {
    font-size: 1rem;
    font-weight: bold;
    color: #2563eb; /* blue-600 */
    margin-bottom: 8px;
}

.map-tab-title[b-itakzqhkj6] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0px;
    padding: 0px;
}

.map-tab-description[b-itakzqhkj6] {
    font-size: 1rem;
    color: #4b5563;
    padding: 0;
    margin: 0;
    margin-bottom: 4px;
}

.myroutes-header[b-itakzqhkj6] {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 8px;
}

.myroutes-description[b-itakzqhkj6],
.input-instruction[b-itakzqhkj6],
.no-address-msg[b-itakzqhkj6] {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 12px;
}

.address-list-heading[b-itakzqhkj6] {
    font-size: 1.2rem;
    margin: 16px 0 8px 0;
    color: #0f172a;
}

.pagination-controls[b-itakzqhkj6] {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

    .pagination-controls button[b-itakzqhkj6] {
        padding: 6px 12px;
        font-weight: bold;
        cursor: pointer;
    }
.guest-overlay[b-itakzqhkj6] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* dim background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* make sure it stays on top */
}

.guest-overlay-content[b-itakzqhkj6] {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    width: 80%;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.overlay-btn[b-itakzqhkj6] {
    margin: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: 0.2s;
}

    .overlay-btn:hover[b-itakzqhkj6] {
        opacity: 0.9;
    }

    .overlay-btn.secondary[b-itakzqhkj6] {
        background: #f0f0f0;
        color: #333;
    }

    .overlay-btn:not(.secondary)[b-itakzqhkj6] {
        background: #0078d4;
        color: white;
    }

@media (max-width: 1020px) {
    .container[b-itakzqhkj6] {
        flex-direction: column; /* stack vertically */
        height: auto; /* allow container height to adjust */
        padding: 0px;
        margin: 0px;
    }

    .map-container[b-itakzqhkj6] {
        width: 100%;
        height: 50vh; /* adjust as needed */
        padding: 0px;
        margin: 0px;
    }

    .tabs-container[b-itakzqhkj6] {
        width: 100%;
        height: auto; /* adjust height automatically */
        padding: 0px;
        margin: 0px;
    }
    body[b-itakzqhkj6]
    {
        margin: 0px !important;
        padding: 0px;
    }
}
