
#cardContainer {
    display: flex;
    gap: 10px;
    padding: 30px 40px;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    overflow: scroll;
    scrollbar-width: none;
}

.noteCard {
    background: #f0f0f0;
    color: black;

    border-radius: 10px;
    overflow: hidden;
    text-align: left;
    padding: 16px;
    height: fit-content;
    width: 220px;
    min-width: 220px;
    border: 2px solid #f2f2f2;
    cursor: pointer;
    /* box-shadow: 0px 5px 12px 0px rgb(0 0 0 / 5%); */

    text-align: center;
    transition: opacity 0.3s ease-out;
}

.noteCard h1 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 1px;
    text-align: left;
}

.noteCard p {
    margin-bottom: 0px;
    font-weight: 200;
    text-align: left;
}

.noteCard img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
    border-radius: 4px;
}

.noteCard.orange {
    background: linear-gradient(200deg, #e7590b 40%, rgb(204 51 51) 100%);
}

.noteCard.purple {
    background: linear-gradient(20deg, #303734 40%, #000a76 100%);
}

#noteDetails {
    display: none;
    padding: 20px;
}

#loginPageReleaseNotes {
    display: none;
}
