/* Property Dekho Core - Frontend Styles */

/* Form groups within the plugin */
.pd-contact-form .form-group label,
#pd-submit-property-form .form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    color: #343a40;
}

/* Agent card enhancements */
.pd-agent-card a {
    color: #1a1a2e;
    text-decoration: none;
}

.pd-agent-card a:hover {
    color: #1a73e8;
}

/* Inquiry success state */
.pd-inquiry-success {
    text-align: center;
    padding: 2rem;
}

.pd-inquiry-success svg {
    width: 60px;
    height: 60px;
    color: #34a853;
    margin-bottom: 1rem;
}

/* Loading spinner */
.pd-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: pd-spin 0.6s linear infinite;
}

@keyframes pd-spin {
    to { transform: rotate(360deg); }
}
