.locations {
    background: #ffffff;
    padding: 40px;
    margin-top: 40px;
  }
  .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}
.button {
    background: linear-gradient(to right, var(--primary-light), var(--primary), var(--primary-dark));
    color: white;
    font-weight: 500;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    text-align: center;
    transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
    border: none;
    margin: 5px;
}

.button:hover {
    background: linear-gradient(to bottom right, var(--primary-light), var(--primary), var(--primary-dark));
}

.button.active {
    border-bottom: 2px solid var(--primary-dark);
    color: var(--text-white);
}
