.card-shadow {
    width: 190px;
    border-radius: 30px 0 0 30px;
    background: #ffffff;
    box-shadow: 15px 15px 30px rgb(25, 25, 25),
        -15px -15px 30px rgb(60, 60, 60);
}




.light-green-bg{
    background-color: #4ee076 !important;
}
.track-btn-bg{
    background-color: #96C43C !important;
}

.color-dark {
    color: #333333 !important;
}


/* Desktop Search Wrapper */
.desktop-search {
    position: relative;
    width: 100%;
}


/* Search Icon */
.desktop-search i {
    position: absolute;
    top: 50%;
    left: 1rem;
    /* adjust padding from left */
    transform: translateY(-50%);
    color: #25b672;
    /* placeholder color */
    font-size: 1rem;
    pointer-events: none;
    /* icon won't block input */
}


/* Input Field */
.desktop-search input {
    width: 100%;
    padding: 0.6rem 1rem 0.6rem 2.5rem;
    /* left padding for icon */
    font-size: 0.9rem;
    font-weight: 600;
    background-color: #000F06;
    color: #cae9d7;
    border: 1px solid #25b672;
    border-radius: 0.4rem;
    outline: none;
    transition: all 0.3s ease;
}


/* Placeholder Color */
.desktop-search input::placeholder {
    color: #25b672;
    opacity: 1;
}


/* Focus Effect */
.desktop-search input:focus {
    border-color: #4ee076;
    box-shadow: 0 0 5px #4ee07666;
    background-color: #001207;
}



