/* Google Fonts 및 한글 폰트 임포트 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

.hc-account-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', '맑은 고딕', 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 탭 네비게이션 */
.hc-account-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 30px;
    background: #ffffff;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Webkit 브라우저에서 스크롤바 숨기기 */
.hc-account-tabs::-webkit-scrollbar {
    display: none;
}

.tab-item {
    padding: 15px 25px;
    cursor: pointer;
    border: none;
    background: transparent;
    color: #666;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 0;
    text-align: center;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.tab-item:hover {
    color: #2c2c2c;
    background: #f8f8f8;
}

.tab-item.active {
    color: #2c2c2c;
    background: #f8f8f8;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #2c2c2c;
}

.tab-item i {
    font-size: 1.2rem;
}

.tab-label {
    font-size: 0.8rem;
    font-weight: 500;
}

/* 탭 콘텐츠 */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* 메인 정보 섹션 */
.account-main-info {
    background: #ffffff;
    border-radius: 0;
    padding: 30px;
    margin: 0 auto;
    max-width: 800px;
}

.section-title {
    font-size: 24px;
    font-weight: 300;
    color: #2c2c2c;
    margin: 0 0 35px 0;
    padding-bottom: 15px;
    letter-spacing: -0.01em;
}

/* 제목과 가입일을 같은 줄에 표시 */
.section-title-with-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 35px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #e8e8e8;
}

.section-title-with-date .section-title {
    margin: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.join-date {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

/* 정보 그리드 */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* 전체 너비 입력란 (주소용) */
.info-item-full {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-input-full {
    width: 100%;
    max-width: none;
}

/* 자기소개 컨테이너 */
.bio-container {
    margin-bottom: 20px;
}

/* 자기소개 컨테이너 스타일 */
.bio-container {
    border-top: none !important;
    margin-top: 0 !important;
}

/* 교회정보 섹션 디자인 통일 */
.church-input-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.church-input-group .form-input {
    flex: 1;
    min-width: 0;
}

.church-search-btn {
    padding: 8px 12px;
    background: #f8f8f8;
    border: 1px solid #e8e8e8;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.church-search-btn:hover {
    background: #e8e8e8;
    border-color: #2c2c2c;
}

.church-search-btn i {
    font-size: 16px;
    color: #666;
}

/* 교회정보 섹션의 라벨과 입력란 정렬 */
.profile-section .info-grid .info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-section .info-grid .info-item .info-label {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    text-transform: none;
    letter-spacing: 0;
}

.form-input-bio {
    width: 100%;
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.6;
}

.bio-hint {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.info-label {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    text-transform: none;
    letter-spacing: 0;
}

.info-value {
    font-size: 16px;
    color: #2c2c2c;
    padding: 12px 16px;
    background: #f8f8f8;
    border-radius: 0;
    min-height: 20px;
}

/* 버튼 스타일 */
.action-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border: none;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #2c2c2c;
    color: #ffffff;
}

.btn-primary:hover {
    background: #1a1a1a;
}

.btn-secondary {
    background: #f8f8f8;
    color: #2c2c2c;
    border: 1px solid #e8e8e8;
}

.btn-secondary:hover {
    background: #e8e8e8;
}

.btn-cancel {
    background: transparent;
    color: #666;
    border: 1px solid #e8e8e8;
}

.btn-cancel:hover {
    border-color: #2c2c2c;
    color: #2c2c2c;
}

/* 모듈 플레이스홀더 */
.module-placeholder {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.module-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.module-loading i {
    font-size: 2rem;
    color: #2c2c2c;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.module-loading span {
    font-size: 0.9rem;
    color: #888;
}

.module-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    color: #dc3545;
}

.module-error i {
    font-size: 2rem;
}

.module-error span {
    font-size: 0.9rem;
}

/* 메시지 시스템 */
.hc-message {
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0;
    border-left: 4px solid;
    position: relative;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hc-message-success {
    background-color: #f7fcf7;
    border-left-color: #46b450;
    color: #2c2c2c;
}

.hc-message-error {
    background-color: #fef7f7;
    border-left-color: #dc3232;
    color: #2c2c2c;
}

.hc-message-warning {
    background-color: #fefcf7;
    border-left-color: #ffb900;
    color: #2c2c2c;
}

.hc-message-info {
    background-color: #f7fbfc;
    border-left-color: #00a0d2;
    color: #2c2c2c;
}

.hc-message .close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #666;
    padding: 0;
    line-height: 1;
}

.hc-message .close:hover {
    color: #2c2c2c;
}

/* 모듈 공통 스타일 */
.hc-account-module {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
}

/* 기본정보 탭 스타일 */
.hc-account1-container {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    margin: 0 auto;
    max-width: 800px;
}

/* 폼 입력 필드 스타일 */
.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e8e8e8;
    border-radius: 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #2c2c2c;
}

.form-input::placeholder {
    color: #999;
}

/* select 요소 특별 스타일 */
.form-input[type="select"],
.form-input select,
select.form-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding: 16px 48px 16px 16px;
    cursor: pointer;
    line-height: 1.4;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 16px;
    color: #2c2c2c;
}

/* select 옵션 스타일 */
.form-input option {
    padding: 16px;
    line-height: 1.4;
    background: #ffffff;
    color: #2c2c2c;
    font-size: 16px;
    height: auto;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.profile-header {
    background: #f8f8f8;
    color: #2c2c2c;
    padding: 40px 30px;
    text-align: center;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 30px;
}

.profile-avatar {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.avatar-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 3px solid #e8e8e8;
    object-fit: cover;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.avatar-image:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.avatar-edit {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: #2c2c2c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.avatar-edit:hover {
    background: #4CAF50;
    transform: scale(1.1);
}

.avatar-edit i {
    font-size: 18px;
}

.profile-name {
    font-size: 28px;
    font-weight: 300;
    margin: 0 0 8px 0;
    color: #2c2c2c;
    letter-spacing: -0.01em;
}

.profile-username {
    display: none; /* 아이디 및 @ 표시 부분 숨김 */
}

.profile-email {
    font-size: 16px;
    margin: 0;
    color: #666;
    font-weight: 400;
}

.profile-details {
    padding: 30px;
}

.detail-section {
    margin-bottom: 40px;
}

.detail-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 20px;
    font-weight: 300;
    color: #2c2c2c;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
    letter-spacing: -0.01em;
}









.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-label {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    text-transform: none;
    letter-spacing: 0;
}

.detail-value {
    font-size: 16px;
    color: #2c2c2c;
    padding: 12px 16px;
    background: #f8f8f8;
    border-radius: 0;
    min-height: 20px;
    display: flex;
    align-items: center;
}

.bio-content {
    background: #f8f8f8;
    border-radius: 0;
    padding: 20px;
}

.bio-content p {
    margin: 0;
    line-height: 1.6;
    color: #2c2c2c;
}

.no-content {
    color: #666;
    font-style: italic;
    text-align: center;
}

.social-link {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #666;
    text-decoration: underline;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .hc-account-container {
        padding: 15px;
    }
    
    .hc-account-tabs {
        flex-wrap: nowrap;
        gap: 5px;
        overflow-x: auto;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-item {
        min-width: 80px;
        padding: 10px 8px;
        flex-shrink: 0;
    }
    
    .tab-item i {
        font-size: 0.9rem;
    }
    
    .tab-label {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 100%;
    }
    
    .info-item-full {
        margin-bottom: 15px;
    }
    
    .form-input-bio {
        min-height: 100px;
    }
    
    .account-main-info {
        padding: 20px;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .module-placeholder {
        padding: 20px 15px;
    }
    
    .hc-message {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    /* Account-1 모바일 스타일 */
    .profile-header {
        padding: 30px 20px;
    }
    
    .avatar-image {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        border: 3px solid #e8e8e8;
    }
    
    .avatar-edit {
        width: 35px;
        height: 35px;
        bottom: 8px;
        right: 8px;
    }
    
    .avatar-edit i {
        font-size: 16px;
    }
    
    .profile-name {
        font-size: 24px;
    }
    
    .profile-details {
        padding: 20px;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    /* 모바일에서 중앙정렬 강화 */
    .hc-account1-container {
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* 모바일에서 폼 입력 필드 스타일 */
    .form-input {
        padding: 14px 16px;
        font-size: 16px;
        height: auto;
        min-height: 52px;
    }
    
    /* 모바일에서 select 요소 스타일 */
    .form-input[type="select"],
    .form-input select,
    select.form-input {
        padding: 14px 48px 14px 16px;
        height: 52px;
        font-size: 16px;
        line-height: 1.4;
    }
    
    /* 모바일에서 select 옵션 스타일 */
    .form-input option {
        padding: 14px 16px;
        font-size: 16px;
        line-height: 1.4;
        min-height: 44px;
    }
}

/* 기본정보 탭 전용 스타일 */
#main-content {
    padding: 0;
    background: transparent;
}

#main-content .hc-account1-container {
    margin: 0 auto;
    padding: 0;
    max-width: 800px;
}

/* 기본정보 탭 활성화 시 스타일 */
.tab-content.active#main-content {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

/* 기본정보 탭 비활성화 시 스타일 */
.tab-content#main-content {
    display: none;
}

/* 기본정보 탭 전환 애니메이션 */
#main-content.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

/* 기본정보 탭 로딩 상태 */
#main-content.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* 기본정보 탭 에러 상태 */
#main-content.error {
    border: 1px solid #ff6b6b;
    background: #fff5f5;
}

/* 교회검색 관련 스타일 */
.hc-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.hc-search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #666;
    border: none;
    padding: 8px;
    cursor: pointer;
    font-size: 16px;
    z-index: 2;
}

.hc-search-btn:hover {
    color: #2c2c2c;
}

/* hc-login-pro 교회검색 모달과의 호환성 */
.hc-church-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
}

.hc-church-modal.show {
    display: block;
}

.hc-church-modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hc-church-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e8e8e8;
}

.hc-church-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
}

.hc-church-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hc-church-modal-close:hover {
    color: #2c2c2c;
}

.hc-church-modal-body {
    padding: 20px;
}

/* 교회검색 결과 스타일 */
.hc-church-search-results {
    margin-top: 20px;
}

.hc-church-result-item {
    padding: 15px;
    background: #f8f8f8;
    border-radius: 6px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hc-church-result-item:hover {
    background: #ffffff;
    border-color: #2c2c2c;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hc-church-result-item.selected {
    background: #ffffff;
    border-color: #4CAF50;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.hc-church-name {
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 5px;
    font-size: 16px;
}

.hc-church-address {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.hc-church-info {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #888;
}

.hc-church-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 추가 기능 섹션 스타일 */
.profile-actions-section {
    margin-top: 40px;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 8px;
}

.action-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.action-buttons-grid .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.action-buttons-grid .btn i {
    font-size: 16px;
}

/* 버튼 스타일 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: #2c2c2c;
    color: #ffffff;
}

.btn-primary:hover {
    background: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.btn-secondary {
    background: #f8f8f8;
    color: #2c2c2c;
    border: 1px solid #e8e8e8;
}

.btn-secondary:hover {
    background: #e8e8e8;
    border-color: #2c2c2c;
}

/* 섹션 설명 스타일 */
.section-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* 로딩, 결과 없음, 에러 상태 스타일 */
.loading {
    text-align: center;
    padding: 20px;
    color: #666;
}

.no-results {
    text-align: center;
    padding: 20px;
    color: #666;
    font-style: italic;
}

.error {
    text-align: center;
    padding: 20px;
    color: #ff6b6b;
}

/* QR 코드 섹션 스타일 */
#qr-code-content {
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
}

#qr-code-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.qr-code-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.qr-code-image {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #e8e8e8;
}

.qr-code-info {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    min-width: 250px;
}

.qr-code-info p {
    margin: 8px 0;
    font-size: 14px;
    color: #2c2c2c;
}

.qr-code-info strong {
    color: #2c2c2c;
    font-weight: 600;
}

.qr-code-actions {
    margin-top: 10px;
}

/* 로딩 애니메이션 */
.ri-loader-4-line {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 공개범위 설정 폼 스타일 */
#privacy-settings-section .info-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

#privacy-settings-section .form-input {
    background: #ffffff;
}

/* 비밀번호 변경 폼 스타일 */
#password-change-section .info-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

#password-change-section .form-input {
    background: #ffffff;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .action-buttons-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .action-buttons-grid .btn {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .profile-actions-section {
        padding: 20px;
        margin-top: 30px;
    }
    
    #privacy-settings-section .info-grid,
    #password-change-section .info-grid {
        grid-template-columns: 1fr;
    }
}

/* 작은 모바일 화면 최적화 */
@media (max-width: 480px) {
    .hc-account-tabs {
        gap: 3px;
        padding-bottom: 3px;
    }
    
    .tab-item {
        min-width: 70px;
        padding: 8px 6px;
    }
    
    .tab-item i {
        font-size: 0.8rem;
    }
    
    .tab-label {
        font-size: 0.65rem;
    }
    
    .hc-account-container {
        padding: 10px;
    }
    
    .account-main-info {
        padding: 15px;
    }
}

/* 매우 작은 모바일 화면 최적화 */
@media (max-width: 360px) {
    .hc-account-tabs {
        gap: 2px;
        padding-bottom: 2px;
    }
    
    .tab-item {
        min-width: 65px;
        padding: 6px 4px;
    }
    
    .tab-item i {
        font-size: 0.75rem;
    }
    
    .tab-label {
        font-size: 0.6rem;
    }
    
    .hc-account-container {
        padding: 8px;
    }
    
    .account-main-info {
        padding: 12px;
    }
}

/* 프로필 요약 정보 스타일 */
.profile-summary-simple {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 600;
}

/* 프로필 요약 정보 스타일 */
.profile-summary-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.summary-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border: 2px solid #475569 !important;
    border-radius: 8px;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 100px;
}

.summary-btn:hover {
    background: #f1f5f9;
    border-color: #475569 !important;
}

.summary-btn:active {
    background: #e2e8f0;
    border-color: #475569 !important;
}

.btn-text {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #64748b;
}

.btn-count {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}

/* 쪽지 버튼 특별 스타일 */
.message-btn {
    border-color: #0ea5e9 !important;
}

.message-btn:hover {
    background: #f0f9ff;
    border-color: #0284c7 !important;
}

/* Jseeds 버튼 특별 스타일 */
.jseeds-btn {
    border-color: #16a34a !important;
}

.jseeds-btn:hover {
    background: #f0fdf4;
    border-color: #15803d !important;
}

/* 모바일 반응형 */
@media (max-width: 600px) {
    .profile-summary-buttons {
        gap: 0.75rem;
    }
    
    .summary-btn {
        padding: 0.5rem 0.75rem;
        min-width: 80px;
    }
    
    .btn-count {
        font-size: 1rem;
    }
}
