#map {
    height: 400px;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.pac-container {
    z-index: 10000 !important;
}

.pet-info-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.response-guidelines {
    background: #f8f9fa;
    border-left: 4px solid #0d6efd;
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.response-card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.response-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.status-pending {
    background-color: #ffc107;
}

.status-accepted {
    background-color: #28a745;
}

.status-rejected {
    background-color: #dc3545;
}

.status-withdrawn {
    background-color: #6c757d;
}