/* 기본 모달 스타일 (.modal 클래스용) */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal--active {
    display: flex !important;
}

.modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal__content {
    position: relative;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.modal__title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.modal__close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #6b7280;
    border-radius: 8px;
    transition: all 0.2s;
}

.modal__close:hover {
    background-color: #f3f4f6;
    color: #1a1a1a;
}

.modal__body {
    padding: 24px;
}

/* 프로필 정보 스타일 */
.profile-info .info-group {
    margin-bottom: 16px;
}

.profile-info .info-label {
    display: block;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 4px;
}

.profile-info .info-value {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 500;
    margin: 0;
}

.profile-info .info-divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 24px 0;
}

.profile-info .section-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.profile-info .form-group {
    margin-bottom: 16px;
}

.profile-info .form-group label {
    display: block;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 6px;
}

.profile-info .form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.profile-info .form-group input:focus {
    border-color: var(--color-primary);
}

.profile-info .btn-primary {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.profile-info .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.profile-info .btn-full {
    margin-top: 8px;
}

.profile-info .info-notice {
    display: flex;
    gap: 12px;
    padding: 16px;
    background-color: #f8f9fa;
    border-radius: 12px;
    margin-top: 24px;
}

.profile-info .notice-icon {
    font-size: 20px;
    margin: 0;
}

.profile-info .notice-content {
    flex: 1;
}

.profile-info .notice-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px 0;
}

.profile-info .notice-text {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}
