/*
 * Styles for the Global Favorite Button
 * Location: assets/css/elements/favorites-button.css
 */

/* Base style for our custom buttons */
.py-btn {
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none !important;
    border-radius: 5px;
}

/* Specific styles for the favorite button */
.favorite-button {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #495057;
}

.favorite-button:hover {
    background-color: #e9ecef;
    border-color: #ced4da;
}

.favorite-button .favorite-icon {
    color: #ffc107; /* Yellow star color */
    font-size: 1.1em;
}

/* Style for when a plan IS a favorite */
.favorite-button.is-favorite {
    background-color: #ffc107;
    color: #212529;
    border-color: #f5b301;
}

.favorite-button.is-favorite:hover {
    background-color: #f5b301;
}

.favorite-button.is-favorite .favorite-icon {
    color: #fff; /* White star on yellow background */
}