.idp-wrapper {
    text-align: center;
    margin: 25px 0;
}

.idp-wrapper img {
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    max-width: 100%;
}

/* Reset all link styles and apply button style */
.idp-button,
.idp-button:link,
.idp-button:visited,
.idp-button:hover,
.idp-button:active,
.idp-button:focus {
    all: unset;                     /* remove theme defaults */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-top: 12px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;

    color: #fff !important;
    background: linear-gradient(135deg, #ff416c, #ff4b2b) !important;
    border-radius: 8px;
    text-decoration: none !important;

    box-shadow: 0 6px 15px rgba(255, 75, 43, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover */
.idp-button:hover {
    background: linear-gradient(135deg, #e61e4d, #d9361c) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 75, 43, 0.4);
}

/* Click */
.idp-button:active {
    transform: scale(0.96);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Icon */
.idp-button::before {
    content: "⬇";
    font-size: 14px;
}