/* Floating Button */
#bulk-float-btn{
    position:fixed;
    right:0;
    top:50%;
    transform:translateY(-50%);
    background:#FFD400;
    color:#000;
    padding:14px 18px;
    cursor:pointer;
    border-radius:8px 0 0 8px;
    z-index:99999;
    font-weight:700;
    box-shadow:0 0 10px rgba(0,0,0,0.2);
    animation:pulseWave 2.5s infinite;
}

/* موج رادیویی / پالس جذاب */
@keyframes pulseWave{
    0%{
        box-shadow:0 0 0 0 rgba(255, 212, 0, 0.6);
    }
    70%{
        box-shadow:0 0 0 20px rgba(255, 212, 0, 0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(255, 212, 0, 0);
    }
}

/* Popup Background */
#bulk-popup{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    z-index:100000;
}

/* Popup Box */
.bulk-box{
    width:360px;
    max-width:90%;
    background:#fff;
    padding:20px;
    margin:8% auto;
    border-radius:12px;
    position:relative;
    direction:rtl;
    text-align:right;
}

/* Inputs */
.bulk-box input,
.bulk-box textarea{
    width:100%;
    margin-bottom:10px;
    padding:10px;
    border:1px solid #ddd;
    border-radius:6px;
    font-family:inherit;
}

/* Button */
#submit_bulk{
    width:100%;
    padding:12px;
    background:#FFD400;
    color:#000;
    border:none;
    cursor:pointer;
    font-weight:bold;
    border-radius:6px;
}

/* Close button */
#close-bulk{
    position:absolute;
    top:10px;
    left:10px;
    cursor:pointer;
    font-size:18px;
}

/* Mobile Responsive */
@media (max-width: 768px){

    #bulk-float-btn{
        padding:10px 12px;
        font-size:13px;
    }

    .bulk-box{
        margin:20% auto;
        width:95%;
    }
}