/*
.option-card:hover {
    border-color: #9fc0f5;
    box-shadow: 0 0 0 .25rem rgba(63, 128, 234, .25);
    cursor: pointer;
}

.option-card.option-card-active {
    border-color: #2A2D6D;
    box-shadow: 0 0 0 .25rem rgba(42, 45, 109, .45);
}*/
@media (min-width: 576px) {
    .share-buttons {
        position: fixed;
        z-index: 9;
        background-color:#ffffff;
        padding: 10px;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
        text-align: center;
        border-radius: 10px 0 0 10px;
    }
    .share-buttons a {
        font-size: 24px;
        display:block;
    }
}
@media (max-width: 575px) {
    .share-buttons {
        position: fixed;
        z-index: 9;
        background-color:#ffffff;
        padding: 10px;
        right: 0;
        bottom: 0;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
        border-radius: 10px 10px 0 0;
        display: flex; /* Enable flexbox */
        justify-content: center; /* Center horizontally */
        align-items: center; /* Center vertically */
    }
    .share-buttons a {
        font-size: 24px;
        margin-right: 10px;
    }
    .share-buttons a:last-child {
        margin-right: 0;
    }
    .share-buttons span {
        margin-right: 10px;
    }
}
