h1 {
    font-size: 4rem;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 700;
    margin-top: 100px;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
}

img{
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

/* vivid_post_list */
.member-post {
    display: flex;
    align-items: flex-start;    
    border-bottom: solid #333 1px;
    padding: 10px 0;
    margin: 10px 0;
    flex-direction: row;
}

.member-post:last-child {
    border-bottom: none;
}

.member-post a {
    text-decoration: none;
    color: inherit;
}

.member-post a:hover {
    color: inherit;
}

.profile-link {
    display: inline-block;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.post-content {
    flex-grow: 1;
    min-width: 0;
}

.post-header {
    display: flex; 
    justify-content: space-between;
    flex-wrap: nowrap;
}

.post-header strong {
    font-size: 1.1rem;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 150px);
    margin-right: 10px;
}

.post-date {
    font-size: 0.9rem;
    color: #aaa;
    white-space: nowrap;
}

.post-content p {
    font-size: 1rem;
    color: #fff;
    line-height: 1.5;
    word-wrap: break-word;
    margin: 10px 0;
}

.post-stats {
    color: #999;
    text-align: right;
    margin-top: 5px;
    align-items: center;
}

.post-stats span {
    margin-right: 15px;
}

.post-stats i {
    margin-right: 5px;
}

.post-stats span:last-of-type {
    margin-right: 0; /* 마지막 타입의 span의 오른쪽 마진을 없앰 */
}

.post-footer {
    border-top: 1px solid #333;
    padding: 10px;
}

.post-footer a {
    text-decoration: none;
    color: inherit;
}

.post-footer a:hover {
    color: inherit;
}

.delete-post {
    cursor: pointer; /* 커서 모양을 포인터로 설정 */
}

.like-button {
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 1.5rem;   
}

.like-button.liked {
    color: #ee2a7b;    
}

.post-actions {
    margin: 20px;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

.shake {
    animation: shake 0.5s ease-in-out;
}

/* vivid_post_detail */
.report-post{
    cursor: pointer;
}
.report-comment{
    color: #aaa;
    text-decoration: none;
    cursor: pointer;
}
.report-comment:hover{
    color: #fff;
    text-decoration: none;
}

/* view_vivid_report */
.report-preview {
    position: relative;
    max-height: 1000px; /* 미리보기 높이 */
    overflow: hidden;
}
.report-preview::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px; /* 가리는 영역 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1)); /* 그라데이션 */
}
.premium-content {
    text-align: center;
    margin-top: 20px;
}

.list-container {
    position: relative;
    min-height: 100vh;
}
.write-button {
    position: sticky;
    bottom: 30px;
    margin-left: auto;
    margin-right: 20px;
    display: block;
    width: 50px;
    height: 50px;
}
.write-button a{
    text-decoration: none;
}

#loading {
    display: none;
    text-align: center;
    padding: 20px;
}

.nickname-free {
    color: white;
}
.nickname-paid {
    color: #8dc63f !important;
}
.nickname-admin {
    background: linear-gradient(to right, #ee2a7b, #8dc63f); /* vivid에서 index까지의 그라데이션 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.report-tags {
    margin-top: 20px;
}

.report-tags h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    background-color: #2c2c2c;
    color: #8dc63f;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

/* 리포트 뷰 스타일 */
.report-view .container {
    width: 100% !important;
    max-width: 100% !important;
}

.report-view .row {
    margin: 0 auto;
    max-width: 800px;
}

.report-view .col-md-10,
.report-view .col-lg-8 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

/* 리포트 내용 스타일 */
.report-content img {
    max-width: 100%;
    height: auto;
}