/* Custom brand colors for ReWallet buttons — Outline Style */

/* Telegram: outline with brand blue */
.button.button-telegram {
    background-color: transparent !important;
    border: 2px solid #0088CC !important;
    color: #FFFFFF !important;
}

.button.button-telegram:hover {
    background-color: rgba(0, 136, 204, 0.15) !important;
}

.button.button-telegram img,
.button.button-telegram svg {
    filter: brightness(0) invert(1) !important;
}

/* LinkedIn: outline with brand blue */
.button.button-linkedin {
    background-color: transparent !important;
    border: 2px solid #0A66C2 !important;
    color: #FFFFFF !important;
}

.button.button-linkedin:hover {
    background-color: rgba(10, 102, 194, 0.15) !important;
}

.button.button-linkedin img,
.button.button-linkedin svg {
    filter: brightness(0) invert(1) !important;
}

/* X/Twitter: outline with white border on black-ish */
.button.button-twitter {
    background-color: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    color: #FFFFFF !important;
}

.button.button-twitter:hover {
    background-color: rgba(255, 255, 255, 0.08) !important;
}

.button.button-twitter img,
.button.button-twitter svg {
    filter: brightness(0) invert(1) !important;
}