/* Modal tausta */
.ssb-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
    display: none;
}

/* Modal sisältö */
.ssb-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease-in-out;
}

/* Close-painike */
.ssb-close {
    color: #d6111e;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.ssb-close:hover {
    color: #000;
}

/* Jakopainikkeet */
.social-share-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
    gap: 10px;
}

.social-share-buttons a {
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 50px;
    color: #fff;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.2s;
}

.social-share-buttons a[href*="facebook.com"] { background: #3b5998; }
.social-share-buttons a[href*="twitter.com"] { background: #1da1f2; }
.social-share-buttons a[href*="linkedin.com"] { background: #0077b5; }
.social-share-buttons a[href^="mailto:"] { background: #d6111e; }

.social-share-buttons a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
}

.ssb-open-modal {
    background: #d6111e;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.2s;
}
.ssb-open-modal:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}