.review-detail-container {
    padding: 20px;
    max-width: 100%;
    margin: 0 auto;
}

/* 헤더 영역 스타일 */
.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
}

.back-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
}

.review-title {
    flex-grow: 1;
    margin: 0 15px;
    font-size: 18px;
    font-weight: bold;
}

/* 메뉴 버튼 스타일 */
.menu-button-wrapper {
    position: relative;
}

.menu-button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
}

.menu-list {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border-radius: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 120px;
}

.menu-list.show {
    display: block;
}

.menu-item {
    padding: 12px 20px;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.menu-item:hover {
    background-color: #f5f5f5;
}

/* 만료일 섹션 스타일 */
.expiry-date-section {
    margin-bottom: 20px;
}

.expiry-date-section select {
    margin-left: 10px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* 신청 링크 섹션 스타일 */
.application-link-section {
    margin-bottom: 20px;
}

.application-link-section a {
    margin-left: 10px;
    color: #007bff;
    text-decoration: none;
    word-break: break-all;
}

.application-link-section a:hover {
    text-decoration: underline;
}

/* 본문 영역 스타일 */
.content-section {
    margin-bottom: 20px;
}

.content-section textarea {
    width: 100%;
    min-height: calc(100vh - 300px);
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: none;
    font-size: 16px;
    line-height: 1.5;
}

.content-section p {
    white-space: pre-wrap;
    word-break: break-word;
    width: 100%;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #dee2e6;
    font-family: inherit;
    line-height: 1.5;
    min-height: 100px;
    margin: 0;
}