/* My List page specific styles */
.mylist-page .page-header {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    padding: 80px 0 40px;
    text-align: center;
    margin-bottom: 40px;
}

.mylist-page .page-title {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.mylist-page .empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #a0a0a0;
}

.mylist-page .empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.mylist-page .remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mylist-page .remove-btn:hover {
    background: #e50914;
    transform: scale(1.1);
}

.mylist-page .card-with-actions {
    position: relative;
}