/* Favourites Specific Styles */
.favourites-workspace {
    max-width: 800px;
    margin: 0 auto;
}

.favourites-panel {
    padding: 2rem;
    min-height: 300px;
}

.fav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fav-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    cursor: grab;
}

.fav-item:active {
    cursor: grabbing;
}

.fav-item:hover {
    background: rgba(255, 255, 255, 0.07);
}

.fav-item.dragging {
    opacity: 0.5;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.fav-drag-handle {
    color: rgba(255, 255, 255, 0.3);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.fav-link {
    flex-grow: 1;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.fav-link:hover {
    color: var(--primary-color);
}

.fav-delete {
    color: #ef4444; /* Red */
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.2s, transform 0.2s;
    padding: 0.5rem;
}

.fav-delete:hover {
    opacity: 1;
    transform: scale(1.1);
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(255, 255, 255, 0.5);
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.2);
}

.empty-state p {
    font-size: 1.2rem;
}
