﻿/* 상담 내용 헤더 */
.notes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.notes-buttons {
    display: flex;
    gap: 0.5rem;
}

/* 상담 내용 표시 영역 (읽기 모드) */
.notes-display-area {
    width: 100%;
    padding: 1rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    min-height: 100px;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #374151;
    max-height: none;
    overflow-y: visible;
}

/* 버튼 스타일 */
.btn-edit-notes,
.btn-cancel-edit {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: white;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-edit-notes:hover,
.btn-cancel-edit:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.btn-save-notes {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-save-notes:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}
