/* Modern Responsive Design */
.fc-row-2 {
    width: 50%;
}

.fc-row-2 input {
    margin-top: 6px;
}

/* Desktop Styles */
@media only screen and (min-width: 768px) {
    .field-card {
        width: 25%;
    }
    
    .fc-row-2 {
        width: 50%;
    }
    
    .card {
        padding: 32px;
    }
}

/* Tablet Styles */
@media only screen and (max-width: 767px) and (min-width: 481px) {
    .row {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .field-card {
        width: calc(50% - 4px);
        margin: 4px;
        padding: 12px;
    }
    
    .fc-row-2 {
        width: 100%;
    }
    
    .card {
        padding: 20px;
        width: 95%;
    }
}

/* Mobile Styles */
@media only screen and (max-width: 480px) {
    .row {
        flex-direction: column;
        gap: 8px;
    }
    
    .field-card {
        width: 100% !important;
        margin: 4px 0;
        padding: 12px;
    }
    
    .field-card.picker {
        width: 100% !important;
        cursor: pointer;
    }
    
    .field-card.picker input {
        /*
        pointer-events: none;
        */
    }
    
    .field-card.picker .display-flex {
        /*
        pointer-events: none;
        */
    }
    
    .fc-row-2 {
        width: 100%;
    }
    
    .card {
        padding: 16px;
        width: 95%;
        margin: 8px auto;
    }
    
    .btn {
        padding: 14px 16px;
        font-size: 16px;
    }
}

/* Modern Price Display */
.price-display {
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 16px;
    margin: 16px 0;
    text-align: center;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.price-display span {
    display: block;
    margin-bottom: 4px;
    color: #4a5568;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-display h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Price Display and Button Layout */
.price-display {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.price-display-err {
    align-items: center;
}

.price-display span:first-child {
    font-size: 14px;
    color: #4a5568;
    font-weight: 500;
}

.price-display h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Map Container Styling */
.map-container {
    text-align: center;
    margin: 24px 0;
}

.map-container img {
    border-radius: 6px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease;
}

.map-container img:hover {
    transform: scale(1.01);
}
