/* Locations Specific Styles */
/* Base styles are in overview-base.css */

/* Location-specific adjustments */
.location-card {
    /* Inherits base styles from overview-base.css */
}

.location-image {
    /* Inherits base styles from overview-base.css */
}

.location-address {
    color: #666;
    font-size: 11px;
    margin-top: 4px;
    font-weight: 400;
    line-height: 1.3;
}

/* Admin: Add Location Button (wird später dynamisch eingefügt) */
.location-admin-button {
    background: linear-gradient(135deg, #dc0000, #990000);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    margin-bottom: 20px;
}

.location-admin-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220,0,0,0.4);
}
