/* বাটন কন্টেইনার */
.pnc-ui-wrap {
    margin: 15px 0;
    text-align: center; /* বাটনটিকে মাঝখানে নেওয়ার জন্য */
}

/* স্লিম ও স্মার্ট ৩ডি বাটন */
#pnc-download {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center; /* টেক্সট মাঝখানে রাখার জন্য */
    gap: 8px;
    
    /* হাইট বাড়াতে উপরের-নিচের প্যাডিং ১২px এবং চওড়া কমাতে ডানে-বামে ১৮px করা হয়েছে */
    padding: 12px 18px; 
    
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 14px; /* ফন্ট সাইজ সামান্য ছোট করা হয়েছে */
    font-weight: 600;
    color: #ffffff !important;
    text-decoration: none;
    background: linear-gradient(180deg, #d2232a 0%, #b01a1f 100%);
    border: none;
    border-radius: 30px; 
    cursor: pointer;
    outline: none;
    
    /* ৩ডি ইফেক্ট */
    box-shadow: 0 3px 0 #801418, 
                0 4px 10px rgba(0, 0, 0, 0.15);
    
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-user-select: none;
    user-select: none;
    line-height: 1;
}

/* হোভার ইফেক্ট */
#pnc-download:hover {
    background: linear-gradient(180deg, #e6272e 0%, #c01c22 100%);
    box-shadow: 0 2px 0 #801418, 
                0 6px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(1px);
}

/* ক্লিক ইফেক্ট */
#pnc-download:active {
    box-shadow: 0 0 0 #801418, 
                0 1px 3px rgba(0, 0, 0, 0.2);
    transform: translateY(3px);
}

/* ডাউনলোড আইকন */
#pnc-download::before {
    content: "\f316"; 
    font-family: dashicons;
    font-size: 15px; 
    display: inline-block;
    margin-bottom: -2px;
}

/* ডিজেবল অবস্থা */
#pnc-download:disabled {
    background: #e0e0e0;
    color: #999 !important;
    box-shadow: 0 2px 0 #bdbdbd;
    cursor: not-allowed;
    transform: none;
}