.scb-container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Spread blocks */
    background: linear-gradient(45deg, #e0f0ff, #a2c4ff);
    padding: 15px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(162, 196, 255, 0.4);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    gap: 20px;
}

#scb-button {
    background: linear-gradient(45deg, #4a90e2, #357ABD);
    border: none;
    padding: 12px 25px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #f0f8ff;
    transition: background 0.3s ease;
    box-shadow: 0 4px 10px rgba(54, 112, 191, 0.6);
    flex-shrink: 0;
}

#scb-button:hover {
    background: linear-gradient(45deg, #357ABD, #294E8C);
    box-shadow: 0 6px 14px rgba(41, 78, 140, 0.8);
}

#scb-counter {
    font-size: 2rem;
    font-weight: 700;
    color: #254e8c;
    min-width: 100px;
    text-align: center;
    padding: 8px 15px;
    background: linear-gradient(45deg, #d0e3ff, #a9c5ff);
    border-radius: 12px;
    box-shadow: inset 0 0 10px rgba(74, 144, 226, 0.4);
    user-select: none;
    flex-grow: 1;
    max-width: 150px;
}

.scb-share-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.scb-share-caption {
    font-weight: 600;
    color: #254e8c;
    font-size: 1rem;
    user-select: none;
}

.scb-share a svg {
    filter: drop-shadow(0 0 2px rgba(54, 112, 191, 0.7));
    transition: filter 0.3s ease;
    width: 32px;
    height: 32px;
}

.scb-share a svg:hover {
    filter: drop-shadow(0 0 6px rgba(41, 78, 140, 0.9));
}
/* Screen width 600px to 700px */
@media (max-width: 700px) {
    .scb-container {
        flex-wrap: wrap;
        padding: 18px 20px;
    }
    #scb-button {
        flex: 1 1 220px;
        font-size: 1rem;
        margin-bottom: 10px;
    }
    #scb-counter {
        flex: 1 1 140px;
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    .scb-share-wrapper {
        flex: 1 1 180px;
        justify-content: flex-start;
        margin-bottom: 10px;
    }
}

/* Screen width 400px to 600px */
@media (max-width: 600px) {
    .scb-container {
        flex-direction: column;
        padding: 15px 15px;
        gap: 25px;
    }
    #scb-button, #scb-counter, .scb-share-wrapper {
        flex: none;
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }
    #scb-button {
        font-size: 1.05rem;
        padding: 11px 1.3rem;
    }
    #scb-counter {
        font-size: 1.7rem;
        padding: 8px 8px;
    }
    .scb-share-wrapper {
        gap: 15px;
        justify-content: center;
    }
}

/* Screen width 300px to 400px */
@media (max-width: 400px) {
    #scb-button {
        font-size: 1rem;
        padding: 10px 1.1rem;
        max-width: 100%;
    }
    #scb-counter {
        font-size: 1.5rem;
        padding: 7px 6px;
        max-width: 100%;
    }
    .scb-share-wrapper {
        gap: 12px;
    }
}

/* Below 300px (extra small devices) */
@media (max-width: 300px) {
    #scb-button {
        font-size: 0.95rem;
        padding: 9px 1rem;
    }
    #scb-counter {
        font-size: 1.3rem;
        padding: 6px 5px;
    }
}
