/* Teamwork Join Buttons Styles */
.ttj-wrapper {
    margin: 12px 0;
}
.ttj-box {
    border: 2px solid #e1e1e1;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    margin-bottom: 10px;
    background: #fff;
}
.ttj-left {
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
}
.ttj-icon { display:inline-block; vertical-align:middle; }
.ttj-label { font-size:16px; }
.ttj-right { }
.ttj-btn {
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 14px;
    border-radius:6px;
    color:#fff;
    text-decoration:none;
    font-weight:700;
}
.ttj-whatsapp { border-color: #25D366; }
.ttj-whatsapp .ttj-btn { background:#25D366; }
.ttj-telegram { border-color: #0088cc; }
.ttj-telegram .ttj-btn { background:#0088cc; }

/* make responsive: full width button on small screens */
@media (max-width:600px) {
    .ttj-box { flex-direction:row; gap:10px; align-items:center; }
    .ttj-right { }
    .ttj-btn { padding:10px 12px; }
    .ttj-wrapper { margin:8px 0; }
}
