        .profile-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 20px;
            height: fit-content;
            position: sticky;
            top: 80px;
        }

        .profile-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--accent);
            color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 16px;
            overflow: hidden;
            cursor: pointer;
            position: relative;
            transition: opacity 0.2s;
        }

        .profile-avatar:hover {
            opacity: 0.85;
        }

        .profile-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
        }

        .profile-name {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .profile-company {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 2px;
        }

        .profile-title-text {
            font-size: 12px;
            color: var(--text-dim);
            margin-bottom: 16px;
        }

        .profile-category {
            display: inline-block;
            padding: 4px 10px;
            font-size: 11px;
            font-weight: 600;
            background: var(--accent-dim);
            border: 1px solid var(--accent-border);
            border-radius: 20px;
            color: var(--accent);
        }

        .profile-field-row {
            display: flex;
            align-items: baseline;
            gap: 8px;
        }

        .btn-edit-inline {
            font-size: 11px;
            color: var(--accent);
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            font-weight: 500;
            opacity: 0.7;
        }

        .btn-edit-inline:hover {
            opacity: 1;
            text-decoration: underline;
        }

        .category-row {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }

        .btn-edit-cat {
            font-size: 11px;
            color: var(--text-muted);
            cursor: pointer;
            background: none;
            border: none;
            text-decoration: underline;
            transition: color 0.2s;
            padding: 0;
        }

        .btn-edit-cat:hover {
            color: var(--accent);
        }

        .survey-detail {
            margin-bottom: 16px;
        }

        .survey-detail-item {
            font-size: 12px;
            color: var(--text-muted);
            padding: 3px 0;
        }

        .survey-detail-label {
            color: var(--text-dim);
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-top: 6px;
        }

        .survey-detail-value {
            font-size: 12px;
            color: var(--text);
        }

        /* Category Edit Modal */
        .cat-edit-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 200;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            align-items: center;
            justify-content: center;
        }

        .cat-edit-overlay.show {
            display: flex;
        }

        .cat-edit-modal {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 28px;
            width: 90%;
            max-width: 600px;
            max-height: 85vh;
            overflow-y: auto;
            animation: slideUp 0.3s ease;
        }

        .cat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 8px;
            margin-bottom: 16px;
        }

        .cat-option {
            padding: 10px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            text-align: center;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .cat-option:hover {
            border-color: var(--accent-border);
        }

        .cat-option.selected {
            background: var(--accent-dim);
            border-color: var(--accent);
            color: var(--accent);
            font-weight: 600;
        }

        .survey-q-label {
            font-size: 13px;
            font-weight: 600;
            margin: 16px 0 8px;
            color: var(--text);
        }

        .survey-opts {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .survey-opt {
            padding: 6px 12px;
            border: 1px solid var(--border);
            border-radius: 20px;
            font-size: 11px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .survey-opt:hover {
            border-color: var(--accent-border);
        }

        .survey-opt.selected {
            background: var(--accent-dim);
            border-color: var(--accent);
            color: var(--accent);
        }

        .survey-radio-opt {
            padding: 8px 14px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            font-size: 12px;
            cursor: pointer;
            margin-bottom: 4px;
            transition: all 0.2s;
        }

        .survey-radio-opt:hover {
            border-color: var(--accent-border);
        }

        .survey-radio-opt.selected {
            background: var(--accent-dim);
            border-color: var(--accent);
            color: var(--accent);
        }

        .cat-survey-area {
            display: none;
        }

        .cat-survey-area.show {
            display: block;
        }

        .cat-textarea {
            width: 100%;
            padding: 8px;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            color: var(--text);
            font-size: 12px;
            font-family: inherit;
            resize: vertical;
            min-height: 60px;
        }

        .profile-info {
            border-top: 1px solid var(--border);
            padding-top: 16px;
            margin-top: 4px;
        }

        .profile-info-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 8px 0;
            font-size: 13px;
        }

        .profile-info-label {
            color: var(--text-muted);
            min-width: 80px;
        }

        .profile-info-value {
            color: var(--text);
            text-align: right;
            word-break: break-all;
        }

        .btn-edit {
            width: 100%;
            margin-top: 16px;
            padding: 10px;
            font-size: 13px;
            font-weight: 600;
            border: 1px solid var(--border);
            background: transparent;
            color: var(--text-muted);
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-edit:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .btn-logout {
            width: 100%;
            margin-top: 8px;
            padding: 10px;
            font-size: 13px;
            font-weight: 600;
            border: 1px solid rgba(255, 77, 79, 0.3);
            background: transparent;
            color: var(--danger);
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-logout:hover {
            background: rgba(255, 77, 79, 0.08);
        }

        /* Edit Modal */
        .edit-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 200;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            align-items: center;
            justify-content: center;
        }

        .edit-overlay.show {
            display: flex;
        }

        .edit-modal {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 28px;
            width: 90%;
            max-width: 480px;
            max-height: 80vh;
            overflow-y: auto;
            animation: slideUp 0.3s ease;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .edit-title {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 14px;
        }

        .form-label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            margin-bottom: 4px;
        }

        .form-input {
            width: 100%;
            padding: 10px 12px;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            color: var(--text);
            font-size: 13px;
            font-family: inherit;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--accent);
        }

        .btn-save {
            width: 100%;
            padding: 12px;
            margin-top: 8px;
            font-size: 14px;
            font-weight: 700;
            background: var(--accent);
            color: #000;
            border: none;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-save:hover {
            opacity: 0.9;
        }

        .btn-save:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .btn-cancel {
            width: 100%;
            padding: 10px;
            margin-top: 8px;
            font-size: 13px;
            font-weight: 600;
            background: transparent;
            border: 1px solid var(--border);
            color: var(--text-muted);
            border-radius: var(--radius-sm);
            cursor: pointer;
        }

        .edit-msg {
            font-size: 12px;
            margin-top: 8px;
            text-align: center;
            min-height: 16px;
        }

        .edit-msg.error {
            color: var(--danger);
        }

        .edit-msg.success {
            color: var(--success);
        }

        /* Dashboard Stats */
        .dashboard-stats {
            display: flex;
            gap: 8px;
            margin-top: 14px;
            padding-top: 14px;
            border-top: 1px solid var(--border);
        }

        @media (max-width: 768px) {
            .profile-card {
                position: static;
                padding: 16px;
            }

            .profile-avatar {
                width: 48px;
                height: 48px;
                font-size: 18px;
                margin-bottom: 12px;
            }

            .profile-name {
                font-size: 16px;
            }

            .profile-company {
                font-size: 12px;
            }

            /* Events section */
            .cat-option {
                padding: 10px;
                font-size: 12px;
            }

            /* Meeting request cards */
            .meeting-card {
                padding: 14px;
            }

            .meeting-card .name {
                font-size: 14px;
            }

            .meeting-card .company {
                font-size: 11px;
            }
        }

        .profile-card,
        .profile-name,
        .profile-company,
        .profile-title-text,
        .category-row,
        .profile-info-item {
            overflow-wrap: break-word;
            word-break: break-word;
            max-width: 100%;
        }

        /* イベントカード: 翻訳テキストの折り返し */
        @media (max-width: 480px) {
            .profile-card {
                padding: 12px;
            }

            .profile-name {
                font-size: 14px;
            }

            .profile-company,
            .profile-title-text {
                font-size: 11px;
            }
        }
