#favorites-section {
    margin-top: 2rem;
}

.favorites-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin: 0 auto;
}

.favorites-lock svg {
    margin-bottom: 1rem;
    stroke: #aab0c6;
}

.favorites-lock h3 {
    font-size: 20px;
    margin-bottom: 0.5rem;
    color: #1e1e2f;
}

.favorites-lock p {
    font-size: 14px;
    color: #555;
    margin-bottom: 1.5rem;
}

.favorites-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn.primary {
    background-color: #6633ff;
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.btn.btn.primary:hover {
    background-color: #5322e6;
}

.btn.outline {
    background-color: transparent;
    color: #6633ff;
    border: 2px solid #6633ff;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.btn.outline:hover {
    background-color: #dcdcdd;
}

#cbs-favorite-events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#cbs-favorite-events-list .event-card {
    border-radius: 8px;
    background-color: white;
    padding: 1rem;
    border: 1px solid #e4e4e4;
    text-align: start;
}

#cbs-favorite-events-list .event-card h4 {
    font-size: 18px;
    margin: 0;
}

#cbs-favorite-events-list .event-card p {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    color: #747474;
}

#cbs-favorite-events-list .event-card a {
    text-decoration: none;
}