.btnremove {
    background: #e11d48;
    border: none;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 6px;
}

.emptymsg {
    text-align: center;
    color: #666;
    font-size: 15px;
    margin-top: 60px;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    padding: 1rem 4% 2rem;
}
.card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    width: 170px;
    margin-right: 14px;
    margin-bottom: 14px;
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-8px);
}
.poster {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}
.info {
    padding: 10px;
}
.title {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}

@media (max-width: 768px) {
    .grid {
        padding: 1rem 3% 2rem;
    }

    .card {
        width: 140px;
        margin-right: 10px;
        margin-bottom: 10px;
    }

    .poster {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .card {
        width: 120px;
        margin-right: 8px;
        margin-bottom: 8px;
    }

    .poster {
        height: 170px;
    }

    .title {
        font-size: 11px;
    }
}
