/* All Size Styles */

.rounded-circle-watchlist {
    background-color: black;
    height: 25px;
    width: 25px;
}


.rounded-circle-stock-week {
    max-width: 65px;
    max-height: 65px;
}

.company-logo {
    max-width: 30px;
    height: auto;
}

.card-stock-fx {
    height: 50%;
    border-radius: 3vw;
    margin-bottom: 1px;
    cursor: pointer;
}

.card-stock-week{
    cursor: pointer;
}

.fixed-buttons {
    position: fixed;
    top: 250px;
    left: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 3;
}

.card {
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d; /* To ensure the rotation has depth */
}

.card:hover {
    transform: rotateY(10deg);
    filter: brightness(1.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.container-watchlist {
    height: 40vh;
}

#watchlist-user {
    max-height: 30vh;
    overflow: scroll;
}

.cross-watchlist {
    color: var(--light-red);
    cursor: pointer;
}

.cross-watchlist:hover {
    filter: brightness(1.2);
}

.container-trade-ideas {
    max-height: 100vh
}

/* Cell Phone */

@media (max-width: 575.98px) {
    .img-news {
        width: 120px;
        height: 100%;
        object-fit: cover;
    }

    .container-watchlist {
        width: 100%;
    }

    .select-picks {
        width: 100%;
    }

    .container-trade-ideas {
        width: 100%;
    }

}

/* Medium Screen */
@media (min-width: 575.98px) {
    .img-news {
        width: 120px;
        height: 100px;
        object-fit: cover;
    }

    .container-watchlist {
        width: 60%;
    }

    .select-picks {
        width: 75%;
    }

    .container-trade-ideas {
        width: 75%;
    }
}

/* Large Screen */
@media (min-width: 1200px) {
    .container-watchlist {
        width: 100%;
    }

    .select-picks {
        width: 100%;
    }

    .container-trade-ideas {
        width: 100%;
    }
}