@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --tran-08: all 0.8s ease;
    --tran-05: all 0.5s ease;
    --tran-03: all 0.3s ease;
    --tran-03: all 0.2s ease;
}

body {
    min-height: 100vh;
    /* background-color: rgb(228, 228, 228); */
}

/* ::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: black;
    border-radius: 12px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff84019f;
} */

body.dark::-webkit-scrollbar-thumb:hover,
body.dark .activity-data::-webkit-scrollbar-thumb:hover {
    background: #3A3B3C;
}
/* Base styles for the checkbox */
input[type="checkbox"] {
    appearance: none; /* Remove default checkbox styling */
    width: 17px;
    height: 17px;
    border-radius: 100px !important; /* Make it fully rounded */
    border: 2px solid #4DAAE0; /* Default border color */
    background-color: white; /* Default background color */
    cursor: pointer;
}
.input-wrapper {
    position: relative;
}

.clear-icon {
    position: absolute;
    right: 10px;
    top: 76%;
    transform: translateY(-50%);
    cursor: pointer;
    color: black;
    font-size: 25px;
}


/* Change the background color when checked */
input[type="checkbox"]:checked {
    background-color: #4DAAE0; /* Background color when checked */
    border-color: #4DAAE0; /* Border color when checked */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Optional: Add a checkmark icon when checked */
input[type="checkbox"]:checked::after {
    content: ''; /* Unicode checkmark */
    color: white;
    font-size: 14px;
}
/* Base styles for the checkbox */
input[type="radio"] {
    appearance: none; /* Remove default checkbox styling */
    width: 17px;
    height: 17px;
    border-radius: 100px !important; /* Make it fully rounded */
    border: 2px solid #4DAAE0; /* Default border color */
    background-color: white; /* Default background color */
    cursor: pointer;
}

/* Change the background color when checked */
input[type="radio"]:checked {
    background-color: #4DAAE0; /* Background color when checked */
    border-color: #4DAAE0; /* Border color when checked */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Optional: Add a checkmark icon when checked */
input[type="radio"]:checked::after {
    content: ''; /* Unicode checkmark */
    color: white;
    font-size: 14px;
}

.samad-navbar{
    background-color: #4DAAE0;
}

.samad-navbar .navbar-button{
    background-color: black;
    color: white;
    border-radius: 30px;
}

.samad-navbar .nav-item{
    font-weight: 600;
    color: black;
}

.hero-section {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(-10%, -50%);
    text-align: left;
    color: white;
}

@media (max-width: 768px) {
    .hero-text {
        width: 80%;
    }
}

.cards-div .card{
    border-radius: 30px;
    background-color: #D9D9D9;
}

.cards-div .card img{
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
    height: 350px;
}
    
.card-img-top {
    height: 200px; /* Adjust image height */
    object-fit: cover;
}

.feed .feed-link a{
    text-decoration: none;
    color: black;
    font-size: 20px;
}

.samad-counter button{
 background-color: gainsboro;
 border-radius: 30px;
}
.samad-cart-counter button{
 background-color: #3b9ed8;
 border-radius: 30px;
 color: white;
}
.samad-viewquote-counter button {
    background-color: gainsboro;
    border-radius: 30px;  
}
.samad-viewquote-input{
    text-align: center;
}
.samad-viewquote-input input{
    padding: 10px;
    width: 100%;
}

.variation-img {
    height: auto;
    max-height: 125px;
    width: auto;
    max-width: 100px;
    object-fit: cover;
}