/* All Locations Specific Styles */

.location-card {
    background: white;
    border-radius: 1.25rem;
    padding: 1.25rem;
    border: 1px solid #f1f5f9;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s;
    height: 100%;
}

.location-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05) !important;
    transform: translateY(-2px);
    border-color: var(--uc-purple);
}

.location-card:active {
    transform: scale(0.98);
    background-color: #f8fafc;
}

.location-icon {
    width: 48px;
    height: 48px;
    background: #f5f3ff;
    color: var(--uc-purple);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
