﻿
    <style>
    .form-container {
        max-width: 700px;
        margin: 0 auto;
        background-color: #ffffff;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
    }

    .form-label {
        font-weight: 700;
        font-size: 1rem;
        margin-bottom: 6px;
        color: #333;
    }

    .form-control {
        border-radius: 8px;
        padding: 10px 14px;
        font-size: 0.95rem;
        border: 1px solid #ccc;
        transition: all 0.3s ease-in-out;
    }

        .form-control:focus {
            border-color: #34c759;
            box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
        }

    .btn.theme-btn {
        background-color: #34c759;
        color: white;
        font-weight: 600;
        border-radius: 8px;
        padding: 12px 20px;
        transition: all 0.3s ease-in-out;
    }

        .btn.theme-btn:hover {
            background-color: #34c759;
        }

    .d-flex.gap-2 {
        gap: 12px;
        align-items: center;
    }

    .company-service-location-list {
        margin-bottom: 12px;
    }

    .company-service-location-list {
        margin-top: 10px;
        margin-bottom: 16px;
    }

    .form-group + .company-service-location-list {
        margin-top: 8px;
    }

    #btnRequestQuote {
        margin-top: 12px;
    }


    #QuotationForm br {
        display: none;
    }

@@media (max-width: 768px) {
    .form-container {
        padding: 20px;
    }

    .d-flex.gap-2 {
        flex-direction: column;
    }

    .btn.theme-btn {
        width: 100%;
    }

    .location-text {
        display: inline-block;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
        font-size: 14px;
        max-width: 100%;
    }

    .service-location-details {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .location-container {
        max-width: 100%;
        flex: 1 1 auto;
    }
}
</style>

