.editEmotion .emotions {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 0 10px;
}

.editEmotion .emotions .btn {
    width: 44px;
    height: 44px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    outline: none;
    border-radius: 50%;
}
.editEmotion .emotions .btn.natural {
    background-image: url("../../images/emotion/natural.png");
}
.editEmotion .emotions .btn.natural.active {
    background-image: url("../../images/emotion/natural_active.png");
}

.editEmotion .emotions .btn.happy {
    background-image: url("../../images/emotion/happy.png");
}
.editEmotion .emotions .btn.happy.active {
    background-image: url("../../images/emotion/happy_active.png");
}

.editEmotion .emotions .btn.love {
    background-image: url("../../images/emotion/love.png");
}
.editEmotion .emotions .btn.love.active {
    background-image: url("../../images/emotion/love_active.png");
}

.editEmotion .emotions .btn.sad {
    background-image: url("../../images/emotion/sad.png");
}
.editEmotion .emotions .btn.sad.active {
    background-image: url("../../images/emotion/sad_active.png");
}

.editEmotion .emotions .btn.angry {
    background-image: url("../../images/emotion/angry.png");
}
.editEmotion .emotions .btn.angry.active {
    background-image: url("../../images/emotion/angry_active.png");
}

.editEmotion .emotions .btn.tire {
    background-image: url("../../images/emotion/tire.png");
}
.editEmotion .emotions .btn.tire.active {
    background-image: url("../../images/emotion/tire_active.png");
}


/* textarea & input 밑줄 스타일 */
.no-border {
    border: none;
    border-bottom: 2px solid #ccc;
    border-radius: 0;
    background: transparent;
    resize: none;
    box-shadow: none;
}

.no-border:focus {
    border-bottom: 2px solid #5e35b1;
    outline: none;
    box-shadow: none;
}

/* 캐러셀 크기 고정 */
.post-left {
    height: 100%;
}

.post-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 오른쪽 폼 스크롤 방지 + 균형 */
.post-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.post-edit-container {
    max-width: 1100px;
    width: 800px;
    height: auto; /* 높이 자동 */
}

.post-left {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.post-left img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

