/* 사용자 포털 전용 스타일 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #09090b;
    background: #fafafa;
    min-height: 100vh;
}

/* 로그인 페이지 스타일 */
.login-container {
    display: flex;
    min-height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 40px;
    align-items: center;
}

.login-card {
    flex: 1;
    max-width: 400px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.login-header {
    background: #09090b;
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.logo p {
    font-size: 14px;
    opacity: 0.9;
}

.login-form {
    padding: 40px 30px;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #09090b;
    box-shadow: 0 0 0 3px rgba(9, 9, 11, 0.1);
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 16px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #6b7280;
    cursor: pointer;
}

.checkbox-container input {
    margin-right: 8px;
}

.forgot-password {
    font-size: 14px;
    color: #09090b;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    background: #09090b;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 24px;
}

.login-btn:hover {
    background: #18181b;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.login-divider {
    text-align: center;
    position: relative;
    margin: 24px 0;
    color: #9ca3af;
    font-size: 14px;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
    z-index: 1;
}

.login-divider span {
    background: white;
    padding: 0 16px;
    position: relative;
    z-index: 2;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
}

.social-btn:hover {
    border-color: #d1d5db;
    transform: translateY(-1px);
}

.social-btn.google {
    color: #4285f4;
}

.social-btn.naver {
    color: #03c75a;
}

.social-icon {
    margin-right: 8px;
    font-size: 16px;
}

.signup-link {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
}

.signup-link a {
    color: #09090b;
    text-decoration: none;
    font-weight: 500;
}

.signup-link a:hover {
    text-decoration: underline;
}

/* 정보 섹션 */
.login-info {
    flex: 1;
    max-width: 400px;
    color: #09090b;
}

.info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    border: 1px solid #e4e4e7;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    margin-bottom: 12px;
    font-size: 16px;
}

.contact-info {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e4e4e7;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 14px;
}

/* 대시보드 스타일 */
.dashboard-container {
    background: #fafafa;
    min-height: 100vh;
}

.dashboard-header {
    background: #09090b;
    color: white;
    padding: 20px 0;
    border-bottom: 1px solid #27272a;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.user-info p {
    opacity: 0.9;
    font-size: 14px;
}

.header-actions {
    display: flex;
    gap: 12px;
}

.header-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.header-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.dashboard-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 20px;
}

/* 알림 카드 */
.alert-card {
    background: #fffbeb;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.alert-card.urgent {
    background: #fef2f2;
    border-color: #ef4444;
}

.alert-icon {
    font-size: 24px;
}

.alert-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.alert-content p {
    font-size: 14px;
    color: #6b7280;
}

.alert-actions {
    margin-left: auto;
}

.alert-btn {
    display: inline-block;
    background: #f59e0b;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
}

.alert-btn.urgent {
    background: #ef4444;
}

.alert-btn:hover {
    transform: translateY(-1px);
}

/* 대시보드 그리드 */
.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* 서비스 카드 */
.services-section {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #e4e4e7;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.view-all-link {
    font-size: 14px;
    color: #71717a;
    text-decoration: none;
    font-weight: 500;
}

.view-all-link:hover {
    color: #09090b;
    text-decoration: underline;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.service-card {
    border: 1px solid #e4e4e7;
    border-radius: 6px;
    padding: 16px;
    transition: all 0.2s ease;
    text-align: center;
    background: #fafafa;
}

.service-card:hover {
    border-color: #d4d4d8;
    background: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.service-card.active {
    border-color: #10b981;
    background: #f0fdf4;
}

.service-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.service-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.service-status {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.service-status.active {
    background: #d1fae5;
    color: #065f46;
}

.service-status.inactive {
    background: #fee2e2;
    color: #991b1b;
}

.service-price {
    font-size: 14px;
    color: #6b7280;
}

/* 빌링 섹션 */
.billing-summary {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #e4e4e7;
}

.billing-amount {
    text-align: center;
    margin-bottom: 24px;
}

.amount-label {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.amount-value {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.due-date {
    font-size: 14px;
    color: #ef4444;
    font-weight: 500;
}

.pay-btn {
    display: block;
    width: 100%;
    background: #09090b;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 12px;
    text-decoration: none;
    text-align: center;
}

.pay-btn:hover {
    background: #18181b;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.billing-actions {
    display: flex;
    gap: 8px;
}

.secondary-btn {
    flex: 1;
    display: block;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
}

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

/* 최근 활동 */
.recent-activity {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #e4e4e7;
}

.activity-list {
    list-style: none;
}

.activity-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 16px;
}

.activity-icon.payment {
    background: #d1fae5;
    color: #065f46;
}

.activity-icon.service {
    background: #dbeafe;
    color: #1e40af;
}

.activity-icon.alert {
    background: #fef3c7;
    color: #92400e;
}

.activity-content {
    flex: 1;
}

.activity-title {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 2px;
}

.activity-time {
    font-size: 12px;
    color: #9ca3af;
}

/* 빠른 메뉴 스타일 */
.quick-menu {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #e4e4e7;
    margin-bottom: 20px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    border: 2px solid #f3f4f6;
    border-radius: 8px;
    text-decoration: none;
    color: #374151;
    transition: all 0.2s ease;
}

.menu-item:hover {
    border-color: #d4d4d8;
    background: #f4f4f5;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.menu-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.menu-title {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

/* 공지사항 스타일 */
.notices {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #e4e4e7;
}

.notice-list {
    list-style: none;
}

.notice-item {
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
    transition: background 0.2s ease;
}

.notice-item:last-child {
    border-bottom: none;
}

.notice-item:hover {
    background: #f9fafb;
    margin: 0 -12px;
    padding: 12px;
    border-radius: 6px;
}

.notice-title {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 4px;
    line-height: 1.4;
}

.notice-date {
    font-size: 12px;
    color: #9ca3af;
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .login-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .login-info {
        order: -1;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .billing-actions {
        flex-direction: column;
    }
}

/* 서비스 관리 스타일 */
.services-filter {
    background: #ffffff;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #e4e4e7;
}

.filter-group {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-select {
    padding: 8px 12px;
    border: 1px solid #e4e4e7;
    border-radius: 6px;
    font-size: 14px;
    background: #ffffff;
    cursor: pointer;
}

.add-service-btn {
    background: #09090b;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-left: auto;
}

.add-service-btn:hover {
    background: #18181b;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.service-detail-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #e4e4e7;
    transition: all 0.2s ease;
}

.service-detail-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.service-info {
    display: flex;
    gap: 12px;
}

.service-icon {
    font-size: 24px;
}

.service-details h3 {
    font-size: 18px;
    font-weight: 600;
    color: #09090b;
    margin-bottom: 4px;
}

.service-details p {
    color: #71717a;
    margin-bottom: 8px;
}

.service-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #a1a1aa;
}

.service-status-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.service-status-badge.active {
    background: #dcfce7;
    color: #166534;
}

.service-status-badge.expiring {
    background: #fef3c7;
    color: #92400e;
}

.spec-grid, .domain-grid, .ssl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.spec-item, .domain-item, .ssl-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spec-label, .domain-label, .ssl-label {
    font-size: 12px;
    color: #71717a;
    font-weight: 500;
}

.spec-value, .domain-value, .ssl-value {
    font-size: 14px;
    color: #09090b;
    font-weight: 500;
}

.ssl-value.urgent {
    color: #ef4444;
}

.usage-bar {
    width: 100%;
    height: 6px;
    background: #f4f4f5;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 4px;
}

.usage-fill {
    height: 100%;
    background: #10b981;
    transition: width 0.3s ease;
}

.toggle-enabled {
    color: #10b981;
}

.toggle-disabled {
    color: #ef4444;
}

.service-billing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f4f4f5;
}

.billing-info .price {
    font-size: 16px;
    font-weight: 600;
    color: #09090b;
    margin-bottom: 4px;
}

.billing-info .next-billing {
    font-size: 12px;
    color: #71717a;
}

.billing-info .next-billing.urgent {
    color: #ef4444;
    font-weight: 500;
}

.billing-actions {
    display: flex;
    gap: 8px;
}

.service-btn {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.service-btn.primary {
    background: #09090b;
    color: white;
    border: none;
}

.service-btn.secondary {
    background: #f4f4f5;
    color: #71717a;
    border: 1px solid #e4e4e7;
}

.service-btn.urgent {
    background: #ef4444;
    color: white;
    border: none;
}

.services-stats {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #e4e4e7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 6px;
    background: #f9fafb;
    border: 1px solid #e4e4e7;
}

.stat-card.urgent {
    background: #fef2f2;
    border-color: #fecaca;
}

.stat-icon {
    font-size: 24px;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #09090b;
}

.stat-label {
    font-size: 12px;
    color: #71717a;
}

/* 결제 관리 스타일 */
.current-billing {
    margin-bottom: 24px;
}

.billing-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #e4e4e7;
}

.billing-card.urgent {
    border-color: #f59e0b;
    background: #fffbeb;
}

.billing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.billing-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #09090b;
    margin: 0;
}

.billing-date {
    font-size: 14px;
    color: #f59e0b;
    font-weight: 500;
}

.billing-amount-large {
    font-size: 32px;
    font-weight: 700;
    color: #09090b;
    margin-bottom: 8px;
}

.billing-services {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
}

.billing-services span {
    font-size: 14px;
    color: #71717a;
}

.billing-actions-large {
    display: flex;
    gap: 12px;
}

.pay-btn-large {
    flex: 1;
    background: #ef4444;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.invoice-btn {
    background: #f4f4f5;
    color: #71717a;
    border: 1px solid #e4e4e7;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.payment-methods, .payment-history {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #e4e4e7;
}

.method-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border: 1px solid #e4e4e7;
    border-radius: 6px;
    margin-bottom: 12px;
}

.method-card.primary {
    border-color: #10b981;
    background: #f0fdf4;
}

.method-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.method-icon {
    font-size: 20px;
}

.method-name {
    font-size: 14px;
    font-weight: 500;
    color: #09090b;
}

.method-number {
    font-size: 12px;
    color: #71717a;
}

.primary-badge {
    background: #dcfce7;
    color: #166534;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
}

.method-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.method-btn {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    border: 1px solid #e4e4e7;
    background: #ffffff;
}

.method-btn.primary {
    background: #09090b;
    color: white;
    border-color: #09090b;
}

.method-btn.delete {
    color: #ef4444;
    border-color: #fecaca;
}

.auto-payment {
    padding-top: 16px;
    border-top: 1px solid #f4f4f5;
}

.auto-payment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #10b981;
}

input:checked + .toggle-slider:before {
    transform: translateX(20px);
}

.history-item {
    display: flex;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f4f4f5;
}

.history-item:last-child {
    border-bottom: none;
}

.history-info {
    flex: 1;
}

.history-date {
    font-size: 12px;
    color: #a1a1aa;
    margin-bottom: 4px;
}

.history-title {
    font-size: 14px;
    font-weight: 500;
    color: #09090b;
    margin-bottom: 2px;
}

.history-services {
    font-size: 12px;
    color: #71717a;
}

.history-amount {
    font-size: 14px;
    font-weight: 600;
    color: #09090b;
    margin: 0 16px;
}

.history-status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    margin: 0 16px;
}

.history-status.paid {
    background: #dcfce7;
    color: #166534;
}

.history-status.failed {
    background: #fee2e2;
    color: #991b1b;
}

.history-btn {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    border: 1px solid #e4e4e7;
    background: #ffffff;
}

.history-btn.retry {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
}

/* 고객지원 스타일 */
.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.quick-contact, .inquiry-form {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #e4e4e7;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid #e4e4e7;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.contact-card:hover {
    border-color: #d4d4d8;
    background: #f9fafb;
}

.contact-card.urgent {
    border-color: #ef4444;
    background: #fef2f2;
}

.contact-icon {
    font-size: 24px;
}

.contact-info {
    flex: 1;
}

.contact-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #09090b;
    margin-bottom: 4px;
}

.contact-info p {
    font-size: 12px;
    color: #71717a;
    margin: 0;
}

.contact-btn {
    background: #09090b;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
}

.inquiry-history, .faq-section, .service-status {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #e4e4e7;
    margin-bottom: 24px;
}

.faq-categories {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.faq-category {
    padding: 6px 12px;
    border: 1px solid #e4e4e7;
    background: #ffffff;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
}

.faq-category.active {
    background: #09090b;
    color: white;
    border-color: #09090b;
}

.faq-item {
    border-bottom: 1px solid #f4f4f5;
    margin-bottom: 12px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    cursor: pointer;
    font-weight: 500;
}

.faq-answer {
    padding: 0 0 12px 0;
    color: #71717a;
    display: none;
}

.faq-answer.open {
    display: block;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.status-item.operational {
    background: #f0fdf4;
    border: 1px solid #dcfce7;
}

.status-item.maintenance {
    background: #fffbeb;
    border: 1px solid #fef3c7;
}

.status-indicator {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.status-indicator.operational {
    background: #dcfce7;
    color: #166534;
}

.status-indicator.maintenance {
    background: #fef3c7;
    color: #92400e;
}

@media (max-width: 1024px) {
    .dashboard-grid, .payment-grid, .support-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .spec-grid, .domain-grid, .ssl-grid, .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .add-service-btn {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .login-card,
    .dashboard-main {
        padding: 20px;
    }
    
    .info-card,
    .contact-info {
        padding: 20px;
    }
    
    .billing-actions-large {
        flex-direction: column;
    }
}

/* 결제 통계 섹션 */
.payment-stats {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #e4e4e7;
    margin-bottom: 24px;
}

.stats-header {
    margin-bottom: 20px;
}

.stats-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #09090b;
    margin: 0;
}

.stats-grid .stat-card {
    background: #f9fafb;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e4e4e7;
    text-align: center;
    transition: all 0.2s ease;
}

.stats-grid .stat-card:hover {
    background: #f3f4f6;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-content .stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #09090b;
}

.stat-content .stat-label {
    font-size: 14px;
    color: #71717a;
    font-weight: 500;
}

/* 더보기 버튼 */
.load-more {
    text-align: center;
    padding: 20px 0 0 0;
    border-top: 1px solid #f4f4f5;
    margin-top: 20px;
}

.load-more-btn {
    background: #f4f4f5;
    border: 1px solid #e4e4e7;
    color: #71717a;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.load-more-btn:hover {
    background: #f1f1f2;
    border-color: #d4d4d8;
}

/* 결제 필터 */
.history-filters {
    display: flex;
    gap: 8px;
}

.filter-select {
    padding: 6px 10px;
    border: 1px solid #e4e4e7;
    border-radius: 4px;
    font-size: 12px;
    background: #ffffff;
    cursor: pointer;
}

.add-method-btn {
    background: #09090b;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}

.add-method-btn:hover {
    background: #18181b;
}

.auto-payment-desc {
    font-size: 12px;
    color: #71717a;
    margin: 0;
}

/* 모달 스타일 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.modal-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #09090b;
    margin: 0;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close:hover {
    color: #000;
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding: 20px;
    border-top: 1px solid #e4e4e7;
    background: #f9fafb;
    border-radius: 0 0 8px 8px;
}

.payment-summary {
    margin-bottom: 24px;
}

.payment-summary h4 {
    font-size: 16px;
    font-weight: 600;
    color: #09090b;
    margin-bottom: 12px;
}

.payment-items {
    border: 1px solid #e4e4e7;
    border-radius: 6px;
    overflow: hidden;
}

.payment-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #f4f4f5;
}

.payment-item:last-child {
    border-bottom: none;
}

.payment-total {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f9fafb;
    font-weight: 600;
    color: #09090b;
}

.payment-method-select h4 {
    font-size: 16px;
    font-weight: 600;
    color: #09090b;
    margin-bottom: 12px;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.payment-option {
    display: block;
    cursor: pointer;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 2px solid #e4e4e7;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.payment-option input[type="radio"]:checked + .payment-option-content {
    border-color: #09090b;
    background: #f9fafb;
}

.payment-icon {
    font-size: 18px;
}

.payment-text {
    font-size: 14px;
    font-weight: 500;
    color: #09090b;
}

.cancel-btn {
    background: #f4f4f5;
    border: 1px solid #e4e4e7;
    color: #71717a;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cancel-btn:hover {
    background: #f1f1f2;
}

.pay-btn-modal {
    background: #ef4444;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pay-btn-modal:hover {
    background: #dc2626;
}

/* 정기결제 페이지 스타일 */
.subscription-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 120px;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #e5e7eb;
    z-index: 1;
}

.step.completed:not(:last-child)::after {
    background: #10b981;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.step.active .step-number {
    background: #10b981;
    color: white;
}

.step.completed .step-number {
    background: #10b981;
    color: white;
}

.step-title {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    text-align: center;
}

.step.active .step-title {
    color: #10b981;
    font-weight: 600;
}

.step-content {
    display: none;
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

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

/* 플랜 선택 스타일 */
.plan-selection h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 32px;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.plan-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.plan-card:hover {
    border-color: #10b981;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.plan-card.selected {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.plan-card.recommended {
    border-color: #3b82f6;
}

.plan-card.recommended:hover,
.plan-card.recommended.selected {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.plan-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.plan-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.plan-badge:not(.recommended) {
    background: #fef3c7;
    color: #92400e;
}

.plan-badge.recommended {
    background: #3b82f6;
    color: white;
}

.plan-price {
    text-align: center;
    margin-bottom: 24px;
}

.plan-price .price {
    font-size: 36px;
    font-weight: 800;
    color: #1f2937;
}

.plan-price .period {
    font-size: 16px;
    color: #6b7280;
    margin-left: 4px;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.plan-features li {
    padding: 8px 0;
    font-size: 14px;
    color: #4b5563;
    display: flex;
    align-items: center;
}

.select-plan-btn {
    width: 100%;
    background: #10b981;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.select-plan-btn:hover {
    background: #059669;
    transform: translateY(-1px);
}

.plan-card.recommended .select-plan-btn {
    background: #3b82f6;
}

.plan-card.recommended .select-plan-btn:hover {
    background: #2563eb;
}

/* 결제 주기 선택 */
.billing-cycle {
    margin-top: 40px;
}

.billing-cycle h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.cycle-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.cycle-option {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cycle-option:hover {
    border-color: #10b981;
    background: #f0fdf4;
}

.cycle-option input[type="radio"] {
    margin-right: 12px;
    accent-color: #10b981;
}

.option-content {
    flex: 1;
}

.cycle-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    display: block;
    margin-bottom: 4px;
}

.cycle-desc {
    font-size: 14px;
    color: #6b7280;
    display: block;
}

.cycle-discount {
    font-size: 12px;
    font-weight: 600;
    color: #10b981;
    margin-top: 4px;
    display: block;
}

/* 결제 정보 스타일 */
.payment-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 32px;
}

.selected-plan-summary {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.selected-plan-summary h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.plan-summary {
    display: grid;
    gap: 12px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.summary-item.total {
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
    margin-top: 8px;
}

.summary-item .label {
    font-size: 14px;
    color: #6b7280;
}

.summary-item .value {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.summary-item.total .value {
    font-size: 18px;
    color: #10b981;
}

/* 폼 스타일 */
.customer-info-form,
.payment-method-form {
    margin-bottom: 32px;
}

.customer-info-form h4,
.payment-method-form h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* 결제 수단 선택 */
.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.payment-method-option {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-method-option:hover {
    border-color: #10b981;
    background: #f0fdf4;
}

.payment-method-option input[type="radio"] {
    margin-right: 12px;
    accent-color: #10b981;
}

.method-content {
    flex: 1;
}

.method-icon {
    font-size: 24px;
    margin-right: 12px;
}

.method-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    display: block;
    margin-bottom: 4px;
}

.method-desc {
    font-size: 14px;
    color: #6b7280;
}

.payment-details {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
}

/* 약관 동의 스타일 */
.terms-agreement h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 32px;
}

.terms-list {
    margin-bottom: 24px;
}

.terms-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.terms-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    flex: 1;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 12px;
    accent-color: #10b981;
}

.terms-title {
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
}

.view-terms-btn {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.view-terms-btn:hover {
    background: #e5e7eb;
}

.terms-summary {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.all-agree {
    background: #f0fdf4;
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.all-agree-checkbox .terms-title {
    font-size: 18px;
    font-weight: 600;
    color: #10b981;
}

.important-notice {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 20px;
}

.important-notice h4 {
    font-size: 16px;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 12px;
}

.important-notice ul {
    margin: 0;
    padding-left: 20px;
}

.important-notice li {
    color: #78350f;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* 완료 페이지 스타일 */
.completion {
    text-align: center;
}

.success-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.completion h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 32px;
}

.subscription-summary {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    text-align: left;
}

.subscription-summary h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
    text-align: center;
}

.summary-box {
    display: grid;
    gap: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.summary-row.total {
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
    margin-top: 8px;
}

.summary-row .label {
    font-size: 14px;
    color: #6b7280;
}

.summary-row .value {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.summary-row.total .value {
    font-size: 18px;
    color: #10b981;
}

.next-steps {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    text-align: left;
}

.next-steps h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
    text-align: center;
}

.steps-list {
    display: grid;
    gap: 12px;
}

.step-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
}

.step-icon {
    font-size: 20px;
    margin-right: 12px;
}

.step-text {
    font-size: 14px;
    color: #4b5563;
}

.action-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.dashboard-btn,
.support-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dashboard-btn {
    background: #10b981;
    color: white;
    border: none;
}

.dashboard-btn:hover {
    background: #059669;
    transform: translateY(-1px);
}

.support-btn {
    background: #ffffff;
    color: #374151;
    border: 1px solid #d1d5db;
}

.support-btn:hover {
    background: #f9fafb;
    transform: translateY(-1px);
}

/* 네비게이션 */
.step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 20px 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.prev-btn {
    background: #f9fafb;
    color: #374151;
    border: 1px solid #d1d5db;
}

.prev-btn:hover:not(:disabled) {
    background: #f3f4f6;
}

.prev-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.next-btn,
.subscribe-btn {
    background: #10b981;
    color: white;
}

.next-btn:hover,
.subscribe-btn:hover {
    background: #059669;
    transform: translateY(-1px);
}

/* 정기결제 페이지 반응형 */
@media (max-width: 768px) {
    .subscription-steps {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .step {
        max-width: none;
        flex: none;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .plan-grid {
        grid-template-columns: 1fr;
    }
    
    .cycle-options {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .step-navigation {
        padding: 16px 20px;
    }
    
    .nav-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

/* 정기결제 현황 스타일 */
.subscription-status {
    margin-bottom: 32px;
}

.subscription-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.subscription-card.active {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
}

.subscription-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.subscription-title h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.subscription-plan {
    font-size: 16px;
    font-weight: 600;
    color: #10b981;
    background: #dcfce7;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

.subscription-status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.subscription-status-badge.active {
    background: #10b981;
    color: white;
}

.subscription-status-badge.paused {
    background: #f59e0b;
    color: white;
}

.subscription-status-badge.cancelled {
    background: #ef4444;
    color: white;
}

.subscription-details {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 20px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

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

.detail-label {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-value {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.subscription-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.subscription-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.subscription-btn.manage {
    background: #3b82f6;
    color: white;
}

.subscription-btn.manage:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.subscription-btn.secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.subscription-btn.secondary:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

/* 정기결제 상태 관리 페이지 스타일 */
.subscription-overview {
    margin-bottom: 32px;
}

.overview-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.overview-card.active {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
}

.overview-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.overview-icon {
    font-size: 32px;
    margin-right: 16px;
}

.overview-title {
    flex: 1;
}

.overview-title h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.overview-title p {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

.status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.active {
    background: #10b981;
    color: white;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 24px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

/* 구독 관리 그리드 */
.subscription-management-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

/* 현재 구독 정보 */
.current-subscription {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.subscription-details-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

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

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

.detail-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.detail-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-key {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #1f2937;
    font-weight: 600;
}

.detail-value.price-highlight {
    color: #10b981;
    font-size: 16px;
}

.detail-value.next-billing {
    color: #f59e0b;
}

.detail-value.next-billing.urgent {
    color: #ef4444;
    font-weight: 700;
}

/* 포함된 서비스 */
.service-included-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.service-icon {
    font-size: 20px;
    width: 32px;
    text-align: center;
}

.service-info {
    flex: 1;
}

.service-name {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2px;
}

.service-desc {
    font-size: 12px;
    color: #6b7280;
}

.service-status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}

.service-status.active {
    background: #dcfce7;
    color: #166534;
}

/* 플랜 업그레이드 */
.plan-upgrade-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.plan-upgrade-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.upgrade-options {
    margin-bottom: 12px;
}

.upgrade-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.2s ease;
}

.upgrade-card.recommended {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.upgrade-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.upgrade-header h5 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.upgrade-badge {
    background: #3b82f6;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.upgrade-price {
    text-align: center;
    margin-bottom: 16px;
}

.upgrade-price .price {
    font-size: 24px;
    font-weight: 800;
    color: #1f2937;
}

.upgrade-price .period {
    font-size: 14px;
    color: #6b7280;
    margin-left: 4px;
}

.upgrade-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.feature-item {
    font-size: 14px;
    color: #4b5563;
}

.upgrade-btn {
    width: 100%;
    background: #3b82f6;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.upgrade-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.upgrade-note {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    margin: 0;
}

/* 결제 설정 */
.payment-settings {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.payment-method-list {
    margin-bottom: 24px;
}

.payment-method-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.payment-method-card.primary {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
}

.method-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.method-icon {
    font-size: 24px;
    width: 32px;
    text-align: center;
}

.method-info {
    flex: 1;
}

.method-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2px;
}

.method-number {
    font-size: 14px;
    color: #6b7280;
}

.method-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.method-badge.primary {
    background: #10b981;
    color: white;
}

.method-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.method-action-btn {
    padding: 6px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #ffffff;
    color: #374151;
}

.method-action-btn:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.method-action-btn.primary {
    background: #10b981;
    color: white;
    border-color: #10b981;
}

.method-action-btn.primary:hover {
    background: #059669;
    border-color: #059669;
}

.method-action-btn.delete {
    color: #ef4444;
    border-color: #fecaca;
}

.method-action-btn.delete:hover {
    background: #fef2f2;
    border-color: #f87171;
}

/* 자동결제 설정 */
.auto-payment-settings {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.setting-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.setting-row:last-child {
    border-bottom: none;
}

.setting-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.setting-info p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* 결제 내역 미리보기 */
.payment-history-preview {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
}

.history-preview-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.history-preview-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.history-date {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    min-width: 80px;
}

.history-desc {
    flex: 1;
    font-size: 14px;
    color: #1f2937;
    font-weight: 500;
}

.history-amount {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    min-width: 80px;
    text-align: right;
}

.history-status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    min-width: 50px;
    text-align: center;
}

.history-status.success {
    background: #dcfce7;
    color: #166534;
}

/* 구독 관리 액션 */
.subscription-actions-section {
    margin-top: 32px;
}

.actions-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.actions-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.actions-card > p {
    color: #6b7280;
    margin-bottom: 24px;
}

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

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.action-btn.info {
    border-color: #3b82f6;
    color: #3b82f6;
}

.action-btn.info:hover {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.action-btn.warning {
    border-color: #f59e0b;
    color: #f59e0b;
}

.action-btn.warning:hover {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
}

.action-btn.success {
    border-color: #10b981;
    color: #10b981;
}

.action-btn.success:hover {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.action-btn.danger {
    border-color: #ef4444;
    color: #ef4444;
}

.action-btn.danger:hover {
    background: linear-gradient(135deg, #fef2f2, #fecaca);
}

.btn-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.btn-text {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.btn-desc {
    font-size: 12px;
    opacity: 0.8;
}

/* 중요 안내사항 */
.important-notice {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 20px;
}

.important-notice h4 {
    font-size: 16px;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 12px;
}

.important-notice ul {
    margin: 0;
    padding-left: 20px;
}

.important-notice li {
    color: #78350f;
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 14px;
}

/* 모달 스타일 개선 */
.pause-info h4,
.cancel-reason h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.pause-options,
.reason-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.pause-option,
.reason-option {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pause-option:hover,
.reason-option:hover {
    border-color: #10b981;
    background: #f0fdf4;
}

.pause-option input,
.reason-option input {
    margin-right: 12px;
    accent-color: #10b981;
}

.option-content {
    flex: 1;
}

.duration {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    display: block;
    margin-bottom: 4px;
}

.resume-date {
    font-size: 14px;
    color: #6b7280;
}

.pause-notice,
.cancel-warning {
    background: #f8fafc;
    border-radius: 8px;
    padding: 16px;
    margin-top: 20px;
}

.cancel-warning {
    text-align: center;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.warning-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.cancel-warning h4 {
    font-size: 18px;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 8px;
}

.cancel-warning p {
    color: #7f1d1d;
    margin-bottom: 0;
}

.reason-detail {
    width: 100%;
    min-height: 80px;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    margin-top: 12px;
}

.reason-detail:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* 리텐션 오퍼 */
.retention-offer {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #10b981;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.retention-offer h4 {
    font-size: 16px;
    font-weight: 600;
    color: #065f46;
    margin-bottom: 16px;
}

.offer-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.offer-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.offer-content p {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 12px 0;
}

.offer-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.original-price {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: line-through;
}

.discount-price {
    font-size: 16px;
    font-weight: 700;
    color: #10b981;
}

.offer-btn {
    background: #10b981;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.offer-btn:hover {
    background: #059669;
    transform: translateY(-1px);
}

.confirm-btn,
.danger-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.confirm-btn {
    background: #10b981;
    color: white;
}

.confirm-btn:hover {
    background: #059669;
}

.danger-btn {
    background: #ef4444;
    color: white;
}

.danger-btn:hover {
    background: #dc2626;
}

/* 반응형 */
@media (max-width: 1024px) {
    .subscription-management-grid {
        grid-template-columns: 1fr;
    }
    
    .overview-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .action-buttons-grid {
        grid-template-columns: 1fr;
    }
    
    .overview-stats {
        grid-template-columns: 1fr;
    }
    
    .overview-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .history-preview-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .history-amount,
    .history-status {
        align-self: flex-end;
    }
    
    .offer-card {
        flex-direction: column;
        text-align: center;
    }
}

/* 대시보드 정기결제 현황 스타일 */
.subscription-section {
    margin-bottom: 2rem;
}

.subscription-dashboard-card {
    background: white;
    border-radius: 12px;
    border: 2px solid #e1f5fe;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.subscription-dashboard-card:hover {
    border-color: #81c784;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.subscription-overview {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.subscription-plan-info h3 {
    margin: 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.plan-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.plan-badge.active {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.plan-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #10b981;
}

.subscription-next-payment {
    text-align: right;
}

.next-payment-label {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.next-payment-date {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.next-payment-countdown {
    font-size: 0.875rem;
    font-weight: 600;
    color: #f59e0b;
}

.subscription-quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    gap: 1rem;
}

.quick-stat {
    text-align: center;
}

.quick-stat .stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.25rem;
}

.quick-stat .stat-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscription-actions {
    display: flex;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
}

.subscription-manage-btn,
.subscription-upgrade-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.subscription-manage-btn {
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.subscription-manage-btn:hover {
    background: #e2e8f0;
    color: #334155;
    transform: translateY(-1px);
}

.subscription-upgrade-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: 1px solid transparent;
}

.subscription-upgrade-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* 대시보드 정기결제 반응형 디자인 */
@media (max-width: 768px) {
    .subscription-overview {
        flex-direction: column;
        gap: 1rem;
    }
    
    .subscription-next-payment {
        text-align: left;
    }
    
    .subscription-quick-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .subscription-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
}