#body {
    background-color: rgb(197, 243, 233);
    padding-bottom: 5rem;
}

.container {
    margin: 20pt auto 20pt auto;
}

#title {
    font-size: 2em;
    font-weight: bolder;
    width: 90%;
    margin: 10pt auto 10pt auto;
    text-align: center;
}

#make-request-button {
    cursor: pointer;
    font-size: 1.2rem;
    height: 3.5rem;
    width: 100%;
    background-color: rgb(47, 48, 48);
    color: rgb(197, 243, 233);
    border-radius: 5px;
    font-weight: 700;
}

#post-header {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
    padding-top: 15pt;
}

#header-label {
    display: flex;
    height: 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

#header-label span {
    align-self: flex-end;
}

#filter-button {
    cursor: pointer;
    height: 2.5rem;
    width: 100%;
    max-width: 100px;
    background-color: rgb(47, 48, 48);
    color: rgb(197, 243, 233);
    border-radius: 5px;
}

#filterContainer {
    margin-right: auto;
    margin-left: auto;
    width: 90%;
    text-align: center;
    display: none;
}

#filterContainer div {
    padding-top: 10pt;
    padding-bottom: 10pt;
}

#filterContainer button {
    cursor: pointer;
    height: 2.5rem;
    width: 100%;
    max-width: 100px;
    background-color: rgb(47, 48, 48);
    color: rgb(197, 243, 233);
    border-radius: 5px;
    margin-bottom: 10pt;
}

#area,
#select-number,
#other-option {
    width: 90%;
    margin: 0 auto;
}

.each-post {
    box-shadow: 0px 0px 3px 1px rgb(172, 172, 172);
    margin: 20pt auto 10pt auto;
    width: 90%;
    padding: 8pt;
    border-radius: 8pt;
    cursor: pointer;
    background-color: rgb(47, 48, 48);
    color: lightgray;
}

.each-post:hover {
    cursor: pointer;
    width: 93.5%;
}

.number-of-item {
    font-size: 1.5rem;
    font-weight: bolder;
}

.date {
    margin-top: 5pt;
    color: rgb(182, 182, 182);
    text-align: right;
    font-style: italic;
    font-size: 0.8rem;
}