.share-btn {
    background: linear-gradient(145deg, #2ecc71, #229954);
    box-shadow: 0 8px 0 #1b7943,  /* 12px se kam */
                0 15px 25px rgba(0, 0, 0, 0.4),  /* Thoda kam shadow */
                inset 0 2px 3px rgba(255,255,255,0.5);
    border: none;
    padding: 12px 30px;  /* 18px 45px se kam */
    border-radius: 50px;  /* 70px se thoda kam */
    color: white;
    font-size: 15px;  /* 22px se kam */
    font-weight: 800;  /* 800 se kam */
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;  /* 2px se kam */
    transition: all 0.06s linear;
    position: relative;
    right: 0;
    display: block;
    margin-left: auto;
    margin-right: 0;
}

.share-btn:hover {
    background: linear-gradient(145deg, #3ad97c, #2ecc71);
    box-shadow: 0 8px 0 #1b7943,
                0 18px 30px rgba(0, 0, 0, 0.45);
    right: 20px;
}

.share-btn:active {
    transform: translateY(5px);  /* 8px se kam */
    box-shadow: 0 3px 0 #1b7943,  /* 4px se kam */
                0 10px 20px rgba(0, 0, 0, 0.3);
    right: 20px;
}
/* Copy Button - LEFT ALIGNED */
.copy-btn {
    background: linear-gradient(145deg, #3498db, #2980b9);
    box-shadow: 0 8px 0 #1f6392,
                0 15px 25px rgba(0, 0, 0, 0.4),
                inset 0 2px 3px rgba(255,255,255,0.5);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    color: white;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.06s linear;
    position: relative;
    left: 0;  /* Left align */
    display: block;
    margin-left: 0;  /* Left margin 0 */
    margin-right: auto;  /* Right auto */
    margin-top: 10px;
}

.copy-btn:hover {
    background: linear-gradient(145deg, #5dade2, #3498db);
    box-shadow: 0 8px 0 #1f6392,
                0 18px 30px rgba(0, 0, 0, 0.45);
    left: 20px;  /* Hover pe left move */
}

.copy-btn:active {
    transform: translateY(5px);
    box-shadow: 0 3px 0 #1f6392,
                0 10px 20px rgba(0, 0, 0, 0.3);
    left: 20px;
}

/* Buttons side by side - LEFT ALIGNED */
.button-group {
    display: flex;
    gap: 15px;
    justify-content: flex-start;  /* Left align ke liye */
    margin-top: 15px;
}

.button-group .share-btn,
.button-group .copy-btn {
    margin: 0;  /* Reset margin */
}
.archive-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    
    /* 🔥 Bilkul transparent background 🔥 */
    background: transparent;
    color: #2ecc71;
    border: 1.5px solid #2ecc71;
    
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    margin: 20px 0;
    transition: all 0.3s ease;
    cursor: pointer;
    
    /* Text single line fix */
    white-space: nowrap;
}

.archive-btn:hover {
    background: #2ecc71;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.archive-btn:active {
    transform: translateY(0);
}

/* Agar mobile pe text lamba hai to */
@media (max-width: 500px) {
    .archive-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
        white-space: nowrap;
    }
}

/* Button group ke liye */
.archive-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}
