/* Agenda Detail Page Styles */

.detail-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.detail-content {
    background: white;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
}

.detail-header {
    padding: 2rem;
    border-bottom: 1px solid #eee;
    background: white;
}

.detail-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid #e2e8f0;
}

.detail-image-section {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    border-right: 1px solid #e2e8f0;
}

.detail-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-info-section {
    padding: 2rem;
    background: white;
}

.detail-map-section {
    padding: 2rem;
    border-top: 1px solid #e2e8f0;
    background: #f8f9fa;
}

/* Free message - simple bold text */
.free-message {
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    font-size: 0.95rem;
}

/* Small body text used in agenda detail description */
.text-body-sm {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Section subtitle (slightly smaller h6 used across the detail page) */
.section-subtitle {
    font-size: 0.9rem;
}

/* Map container styling moved from inline styles */
.detail-map-section .service-location-map {
    height: 400px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* Location styles */
.location-full {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Google Maps button */
.btn-google-maps {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #4285f4;
    color: white;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.btn-google-maps:hover {
    background: #3367d6;
    color: white;
}

.btn-google-maps i {
    font-size: 1rem;
}

/* Custom marker without white box */
.custom-service-marker {
    background: transparent !important;
    border: none !important;
    color: #dc3545;
    font-size: 2.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px !important;
    height: 36px !important;
}

.custom-service-marker i {
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.4));
}

.leaflet-div-icon {
    background: transparent !important;
    border: none !important;
}

/* Responsive design */
@media (max-width: 768px) {
    .detail-container {
        padding: 0;
    }
    
    .detail-body {
        grid-template-columns: 1fr;
    }
    
    .detail-image-section {
        min-height: 300px;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .detail-header {
        padding: 1.5rem;
    }
    
    .detail-info-section {
        padding: 1.5rem;
    }
}

@media (min-width: 1400px) {
    .detail-container {
        max-width: 1400px;
        margin: 0 auto;
    }
}
