/* Job Locations Screen Styles */
.job-locations-container {
    max-width: 100%;
}

.job-locations-overview {
    margin-bottom: 40px;
}

.job-locations-no-locations {
    text-align: center;
    color: var(--color-text-secondary);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
    padding: 2rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-small);
}

.job-locations-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

/* Location Tile Links - entfernt blaue Unterstriche */
.location-tile-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.location-tile-link:hover .location-tile {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.location-tile-link:active .location-tile {
    transform: translateY(0);
}

.location-tile-link,
.location-tile-link:visited,
.location-tile-link:hover,
.location-tile-link:active {
    text-decoration: none;
    color: inherit;
}

/* Responsive Design - 4 Breakpoints laut ui-css.mdc Regel 022 */
/* Mobile: max-width 576px */
@media (max-width: 576px) {
    .job-locations-pagination {
        flex-direction: column;
        gap: 15px;
    }
}

/* Tablet/iPad: 600px-768px */
@media (min-width: 600px) and (max-width: 768px) {
    .job-locations-pagination {
        flex-direction: row;
        gap: 20px;
    }
}

/* Kleiner Desktop/13-Zoll: 1024px-1366px */
@media (min-width: 1024px) and (max-width: 1366px) {
    .job-locations-pagination {
        flex-direction: row;
        gap: 20px;
    }
}

/* Großer Desktop/Widescreen: min-width 1440px */
@media (min-width: 1440px) {
    .job-locations-pagination {
        flex-direction: row;
        gap: 20px;
    }
}