@import url("./main.css");

/* Page-specific styles below */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #494949;
    color: #333;
    padding: 20px;
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

main {
    display: flex;
    justify-content: center;;
}

.window{
    background-color: #333;
    margin: 0.5rem;
    margin-left: 0;
    border: solid;
    border-color: #7CB0FF;
    color: #f3f4f5;
    display: flex;
    flex-direction: column;
}

.topbar {
    background-color: #7CB0FF;
    color: #000;
    font-size: 14px;
    height: 30px;
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;     
}

.exiticon{
    margin-right: 5px;
    cursor: pointer;
    height: 24px;
    width: 24px;
}

.nametag {
    display: flex;
    align-items: center;
}

.nametag img{
    height: 24px;
    width: 24px;
    margin-left: 10px;
}

.windowContent{
    height: fit-content;
}

#stats{
    padding: 0.5rem;
}

.nContainer{
    display: flex;
    align-items: center;
    margin: 0.5rem;
    min-width: 200px;
    max-width: 280px;
}

.nContainer img{
    width: auto;
    height: 150px;
    aspect-ratio: 3/4;
}

.nContainer h1{
    font-size: large;
}

.nContainer h2{
    font-size: medium;
}

.nInfo{
    margin-left: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.status, #animeCount, #favAnime, #mangaCount, #favManga{
    color: #7CB0FF;
}

#manga, #anime, #movies {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: auto;
}

