body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.card {
    border: none;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
}

.card-header {
    border-radius: 15px 15px 0 0 !important;
}

.form-control,
.form-select {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 0.75rem;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.input-group-text {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
}

#locationImage,
#serviceImage {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

#locationImage:hover,
#serviceImage:hover {
    transform: scale(1.02);
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
}

.navbar {
    background: linear-gradient(90deg, #B5153A) !important;
}

.navbar-brand {
    font-size: 1.25rem;
        font-weight: 600;
    }
    
    /* Mobile-friendly navbar styles */
    .navbar-toggler {
        border: none;
        padding: 4px 8px;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
    }
    
    .navbar-text {
        margin-bottom: 0;
        font-size: 0.9rem;
    }
    
    /* Navbar brand responsive adjustments */
    .navbar-brand {
        font-size: 1.25rem;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .navbar-nav {
        text-align: center;
        padding-top: 0.5rem;
    }

    .navbar-nav .nav-item {
        margin-bottom: 0.25rem;
    }

    .navbar-text {
        display: block !important;
        padding: 0.5rem 1rem;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }

    .navbar-nav .nav-item .btn {
        width: 100%;
        margin-top: 0.5rem;
    }

    /* Center align all nav links on mobile */
    .navbar-nav .nav-link {
        text-align: center;
        padding: 0.75rem 1rem;
    }
}
@media (max-width: 768px) {
    .navbar-brand {
            font-size: 1.1rem;
        }
    
        .navbar-text {
            font-size: 0.85rem;
        }
    
        /* Ensure navbar brand doesn't overflow */
        .navbar-brand {
            max-width: 70%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
    .card {
        margin: 0 10px;
    }

    .btn {
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1rem;
        max-width: 65%;
    }

    .navbar-text .fw-bold {
        display: block;
        margin-top: 0.25rem;
    }

    /* Adjust navbar text for very small screens */
    .navbar-text {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
}
.custom-select-wrapper {
    position: relative;
}

.select-header {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
}

.select-header.disabled {
    background-color: #e9ecef;
    pointer-events: none;
}

.select-options-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: 0.25rem;
}

.select-options-container.show {
    display: block;
}

.select-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.select-option:hover {
    background-color: #f8f9fa;
}

.select-option.selected {
    background-color: #e9ecef;
}

.option-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 0.375rem;
}

.option-text {
    flex: 1;
}

.selected-image {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 0.25rem;
}