@use "../../../../styles/abstracts/variables" as *; 
@use "../../../../styles/abstracts/mixins"; 

.watchlist {
    @include mixins.dashPageComponent;

    &__header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;

        @media only screen and (max-width: 1000px) {
            flex-direction: column;
        }

        a{ 
            background: $col-orange;
            color: $col-dark;
            padding: .5rem 1rem;
            border-radius: 6px;
            font-size: .75rem;
            font-weight: 500;
            transition: all ease-in-out .5s;
            &:hover {
                background-color: #e66a00;
                box-shadow: 0 0 6px rgba(255, 122, 0, 0.4);
            }

            @media only screen and (max-width: 1000px) {
                padding: .65rem 1rem;
                font-size: .85rem;
                // display: block;
                // width: 100%;
                // text-align: center;
            }
        }
    }

    &__grid{
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        width: 100%;
        gap: 20px;
        padding-top: .5rem;

        @media only screen and (max-width: 1000px) {
            padding-top: 1.5rem;
            // display: flex;
            // flex-direction: column;
            gap: 12px;
        }
    }
}