/* 메시지 컨테이너 스타일 */
.prompt_message_container {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    background-color: #f9f9f9;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* 개별 메시지 아이템 스타일 */
.prompt_message_item {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
    background-color: white;
    position: relative;
}

/* 메시지 헤더 스타일 */
.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/* 버튼 그룹 스타일 */
.button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

/* 삭제 버튼 스타일 */
.btn-delete {
    color: white;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-delete:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

/* 추가 버튼 스타일 */
.btn-add {
    color: #007bff;
    background-color: transparent;
    border-color: #007bff;
}

.btn-add:hover {
    color: white;
    background-color: #007bff;
    border-color: #007bff;
}
