/* NAT Share Buttons - nsb.css */

.nsb-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0 0 24px;
    flex-wrap: wrap;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Total count block */
.nsb-total {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    line-height: 1;
}

.nsb-total-number {
    display: block;
    font-size: 43px;
    font-weight: 700;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #ccc;
    line-height: 43px;
    text-align: center;
    padding-bottom: 0;
    margin-bottom: 0;
}

.nsb-total-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    color: #8a8c8e;
    text-transform: uppercase;
    margin-top: 4px;
    text-align: center;
}

/* Button row */
.nsb-buttons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* Individual button */
.nsb-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 4px;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1;
    transition: opacity 0.15s, transform 0.1s;
    cursor: pointer;
    white-space: nowrap;
}

.nsb-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    color: #fff !important;
}

.nsb-btn:active {
    transform: translateY(0);
    opacity: 0.75;
}

.nsb-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    fill: currentColor;
}

.nsb-btn-label {
    display: inline;
}

/* Responsive: hide labels on very small screens */
@media (max-width: 480px) {
    .nsb-btn {
        padding: 8px 10px;
    }
    .nsb-btn-label {
        display: none;
    }
    .nsb-total-number {
        font-size: 2rem;
    }
}
