/* WP HubSpot Frontend Styles */

.hubspot-contact-grid {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.hubspot-contact-grid.dark-mode {
    background: #2c3e50;
    border-color: #34495e;
    color: #ecf0f1;
}

.hubspot-contact-title {
    margin: 0 0 20px 0;
    padding: 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.hubspot-contact-grid.dark-mode .hubspot-contact-title {
    color: #ecf0f1;
    border-bottom-color: #3498db;
}

.hubspot-fields-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.hubspot-field {
    background: #f8f9fa;
    border-left: 4px solid #0073aa;
    padding: 15px;
    border-radius: 4px;
}

.hubspot-contact-grid.dark-mode .hubspot-field {
    background: #34495e;
    border-left-color: #3498db;
}

.hubspot-field-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.hubspot-contact-grid.dark-mode .hubspot-field-label {
    color: #bdc3c7;
}

.hubspot-field-value {
    font-size: 16px;
    color: #333;
    word-break: break-word;
}

.hubspot-contact-grid.dark-mode .hubspot-field-value {
    color: #ecf0f1;
}

.hubspot-field-value a {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hubspot-contact-grid.dark-mode .hubspot-field-value a {
    color: #3498db;
}

.hubspot-field-value a:hover {
    color: #005a87;
    text-decoration: underline;
}

.hubspot-contact-grid.dark-mode .hubspot-field-value a:hover {
    color: #5dade2;
}

.hubspot-error {
    background: #fee;
    border: 1px solid #f87878;
    border-radius: 4px;
    padding: 15px;
    color: #d32f2f;
    margin: 20px 0;
    font-weight: 500;
}

/* Responsive styles */
@media (max-width: 768px) {
    .hubspot-fields-container {
        grid-template-columns: 1fr;
    }

    .hubspot-contact-grid {
        padding: 15px;
    }

    .hubspot-field {
        padding: 12px;
    }

    .hubspot-contact-title {
        font-size: 18px;
    }
}

/* Print styles */
@media print {
    .hubspot-contact-grid {
        border: 1px solid #000;
        page-break-inside: avoid;
    }

    .hubspot-field {
        page-break-inside: avoid;
    }
}
