/* Favorites System Styles */

.favorite-star {
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.3;
    font-size: 0.9rem;
}

.favorite-star:hover {
    opacity: 1;
    transform: scale(1.2);
}

.favorite-star.favorited {
    opacity: 1;
    color: #ffc107 !important;
}

.tool-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tool-link .tool-name {
    flex: 1;
}

/* Card favorite star */
.card-favorite-star {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    font-size: 1.5rem;
    opacity: 0.3;
    transition: all 0.3s ease;
    z-index: 10;
}

.card-favorite-star:hover {
    opacity: 1;
    transform: scale(1.2) rotate(15deg);
}

.card-favorite-star.favorited {
    opacity: 1;
    color: #ffc107 !important;
}

/* Dark mode compatibility */
[data-bs-theme="dark"] .favorite-star,
[data-bs-theme="dark"] .card-favorite-star {
    color: #ffc107;
}

[data-bs-theme="dark"] .bg-warning.bg-opacity-10 {
    background-color: rgba(255, 193, 7, 0.15) !important;
}