.custom-cover-section {
        position: relative !important;
        width: 100% !important;
        height: 400px !important;
        overflow: hidden !important;
    }
    @media (min-width: 1024px) {
        .custom-cover-section {
            height: 480px !important;
        }
    }
    @media (min-width: 1280px) {
        .custom-cover-section {
            height: 520px !important;
        }
    }
    @media (min-width: 1536px) {
        .custom-cover-section {
            height: 550px !important;
        }
    }

    .custom-cover-buttons {
        position: absolute !important;
        top: 1rem !important;
        right: 1rem !important;
        z-index: 60 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-end !important;
        gap: 0.5rem !important;
    }
    @media (min-width: 768px) {
        .custom-cover-buttons {
            gap: 0.75rem !important;
        }
    }

    .custom-cover-btn {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background-color: #ffffff;
        border: 1px solid #e5e7eb;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        cursor: pointer;
    }
    @media (min-width: 768px) {
        .custom-cover-btn {
            width: 40px;
            height: 40px;
        }
    }
    .custom-cover-btn:hover {
        transform: scale(1.1);
        background-color: #f9fafb;
    }

    .custom-cover-btn.btn-orange { color: #f97316; }
    .custom-cover-btn.btn-green  { color: #22c55e; }
    .custom-cover-btn.btn-gray   { color: #4b5563; }
    .custom-cover-btn.btn-yellow { color: #eab308; }

    .custom-cover-btn i {
        font-size: 14px;
    }
    @media (min-width: 768px) {
        .custom-cover-btn i {
            font-size: 16px;
        }
    }