
.category-fav-btn
{
    padding: 5px 20px;
    border-style: solid;
    border-width: 1px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    color: white;
    background-color: black;
    max-height: 38px;
}

.favorite-categories-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
}

.favorite-categories-section h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.favorite-categories-table {
    width: 100%;
    border-collapse: collapse;
}

.favorite-categories-table th {
    text-align: left;
    font-size: 18px;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.favorite-categories-table td {
    padding: 0.75rem 0;
    border-top: 1px solid #eee;
}

.favorite-categories-table td a{
    color: #4f515a;
    text-decoration: underline;
}

.favorite-categories-table td:first-child {
    font-weight: 600;
}

.favorite-categories-table .btn {
    border: none;
    border-radius: 999px;
    padding: 0.4rem 1rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.favorite-categories-table .btn-secondary {
    color: black;
    text-decoration: underline;
    box-shadow: none;
}
.favorite-categories-table .btn-secondary:hover {
    background: transparent;
    color: black;
}
.favorite-categories-table .text-right {
    text-align: right;
}

.favorite-categories-table tr.is-loading {
    opacity: 0.5;
}

