
.auth-wrapper {
    min-height: 100vh;
    background: linear-gradient(45deg, #fa3998,rgb(244, 96, 170));
}
.auth-card {
    max-width: 450px;
    width: 90%;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.social-login-btn {
    border: 1px solid #dee2e6;
    padding: 0.5rem;
    border-radius: 8px;
    width: 100%;
    background: white;
    transition: all 0.3s;
}
.social-login-btn:hover {
    background: #f8f9fa;
}
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
}
.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #dee2e6;
}
.divider span {
    padding: 0 1rem;
    color: #6c757d;
    background: white;
}
.password-toggle {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.form-control:focus {
    border-color: #ff416c;
    box-shadow: 0 0 0 0.2rem rgba(255, 65, 108, 0.25);
}
.btn-primary {
    background: linear-gradient(135deg, #fa3998, #ff416c);
    border: none;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #ff416c, #fa3998);
}

.hero-section {
    background: linear-gradient(45deg, #fa3998,rgb(244, 96, 170));
    padding: 100px 0;
    color: white;
}

.restaurant-card {
    transition: transform 0.3s;
    cursor: pointer;
}

.restaurant-card:hover {
    transform: translateY(-5px);
}

.category-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

.category-card:hover {
    transform: scale(1.05);
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.rating-badge {
    background-color: #44b700;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
}
.delivery-info {
    font-size: 14px;
    color: #666;
}

#selected-location {
    color: #F9439D;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;  
    max-width: 150px;   
    display: inline-block;    
}

#alertContainer {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: auto;
    max-width: 80%;
    padding: 0;
}

.alert {
    margin: 0.5rem;
    transition: opacity 0.3s ease-in-out;
}

.category-nav {
    position: sticky;
    top: 56px;
    z-index: 100;
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.menu-item-card {
    transition: transform 0.2s;
    cursor: pointer;
}
.menu-item-card:hover {
    transform: translateY(-5px);
}
.scroll-nav {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.scroll-nav::-webkit-scrollbar {
    display: none;
}
.sticky-cart {
    position: sticky;
    top: 140px;
}
.customization-option {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
}
.veg-badge {
    width: 15px;
    height: 15px;
    border: 1px solid green;
    display: inline-block;
    margin-right: 5px;
}
.veg-badge::after {
    content: '';
    width: 7px;
    height: 7px;
    background: green;
    border-radius: 50%;
    display: block;
    margin: 3px;
}
.non-veg-badge {
    width: 15px;
    height: 15px;
    border: 1px solid red;
    display: inline-block;
    margin-right: 5px;
}
.non-veg-badge::after {
    content: '';
    width: 7px;
    height: 7px;
    background: red;
    border-radius: 50%;
    display: block;
    margin: 3px;
}

.text-primary{
    color: #F9439D !important;
}

