.comment-box, .comment-section {
    background: white;
    margin-bottom: 20px;
    margin-top: 16px;
    padding: 16px;
    background: rgba(180, 180, 208, 0.16);
    border-radius: 8px;
    border: 1px solid rgba(180, 180, 208, 0.32);
}


.comment-box textarea {
    width: 100%;
    height: 80px;
    padding: 10px;
}

.comment-box button {
    background: var(--Light-Gradient);
    border: 1px solid var(--Light-Gradient);
    color: var(--Gray-Not-White);
    width: fit-content;
}

.comment {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-content {
    flex-grow: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.name {
    font-weight: bold;
}

.time {
    color: gray;
    font-size: 0.9em;
}

.comment-body {
    margin-top: 5px;
}

.delete-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delete-btn svg {
    width: 20px;
    height: 20px;
}
