:root {
    --title1b: #80CBC4;
    --title1c: #0051ff;
    --btnb: #ffb516;
    --title2b: #B4EBE6;
    --title2c: #FBF8EF;
}

@keyframes shakeText {

    0%,
    100% {
        transform: translateX(0);
    }

    10% {
        transform: translateX(-8px);
    }

    20% {
        transform: translateX(8px);
    }

    30% {
        transform: translateX(-8px);
    }

    40% {
        transform: translateX(8px);
    }

    50% {
        transform: translateX(-8px);
    }

    60% {
        transform: translateX(8px);
    }

    70% {
        transform: translateX(-8px);
    }

    80% {
        transform: translateX(8px);
    }

    90% {
        transform: translateX(-8px);
    }
}

@keyframes textBlink {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

#orderBtn {
    font-size: 18px;
    padding: 10px 20px;
    background-color: #ffc107;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    animation: textBlink 1s infinite ease-in-out;
}

#orderBtn:hover {
    background-color: #eb8d00;
}

#myTab {
    font-size: 18px;
    padding: 10px 20px;
    color: #303030;
}

#myTab .active {
    background-color: #eee !important;
    color: #1d1d1d !important;
    border-bottom: none !important
}

#myTab button {
    color: #8f8f8f !important;
    border: rgba(148, 148, 148, 0.8) 1px solid !important;
}

.product-short-details h3 {
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    color: rgb(112, 180, 98);
}

.sidebar-link {
    flex-grow: 1; /* লিঙ্কটিকে যতটা সম্ভব জায়গা নিতে সাহায্য করে */
    padding: 10px 15px; /* প্যাডিং যোগ করে ক্লিক এরিয়া বাড়াতে সাহায্য করে */
}