@charset "UTF-8";

h1 {
    font-size: 24px !important;
    font-weight: bold !important;
}
/* index */
.flex-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

/* list */

/* post-page */
body.post-page {
    max-width: 100vw;
    padding: 30px;
    margin: 30px auto;
}
.post-page .list {
    width: 30%;
}
.post-page .post {
    width: 70%;
}
.post-page .blog {
    border: 1px solid #000;
    border-radius: 15px;
    height: 800px;
    overflow: auto;
    padding: 30px;
    margin-top: 15px;
}
.post-page .i-iamge img{
    width: 100px;
}
.post-page .index-blog-title {
    font-size: 15px;
    font-weight: bold;
}
.post-page .blog-content span,
.post-page .blog-content p {
    font-size: 12px;
}
.post-page .blog-post {
    display: flex;
    /* width: 1200px; */
    margin: 30px auto;
    align-items: center;
}
.post-page .blog-content {
    margin-left: 20px;
    width: 80%;
    line-height: 1.5;
}
.post-page .post-container {
    width: 100%;
    margin: 0 auto;
    border: 1px solid #000;
    border-radius: 15px;
    padding: 30px;
    margin-top: 15px;
}
.post-page .post-container h1 {
    font-size: 24px;
    margin-bottom: 20px;
}
.post-page .post-content {
    display: flex;

}
.post-page .entry {
    width: 70%;
}
label {
    display: block;
    font-weight: bold;
}
input[type="text"],
input[type="file"],
textarea {
    width: 95%;
    padding: 12px;
    border-radius: 3px;
    border: 1px solid;
}
textarea {
    height: 200px;
}
input[type="submit"] {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.post-date {
    margin-top: 20px;
}
.button-wrap {
    display: flex;
    justify-content: flex-start;
    width: 63%;
    gap: 20px;
    align-items: center;
}
.draft-button  {
    background-color: #fff;
    color: #000;
    padding: 10px 25px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.2s;
    border: 1px solid;
    display: inline-block;
}
.delete {
    margin: 0 0 0 auto;
}
.delete-button:hover {
    color: #FF2B00;
}
/* detail */
