/**
 * AI语音评测系统 - 主页样式
 * 响应式设计：PC、平板、手机自适应
 */

/* =============================================
   基础重置与变量
   ============================================= */
:root {
    --primary-color: #3388ff;
    --primary-hover: #2266dd;
    --text-color: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --border-color: #e0e0e0;
    --bg-color: #f5f5f5;
    --bg-white: #ffffff;
    --sidebar-width: 220px;
    --header-height: 60px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: "Microsoft YaHei", "微软雅黑", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* =============================================
   顶部导航栏
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
}

.site-name {
    font-size: 16px;
    font-weight: bold;
    color: var(--text-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* 通知按钮 */
.notification-wrapper {
    position: relative;
}

.notification-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.notification-btn:hover {
    background-color: var(--bg-color);
    color: var(--primary-color);
}

.notification-btn .icon {
    width: 20px;
    height: 20px;
}

.notification-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background-color: #ff4d4f;
    color: white;
    font-size: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 用户下拉菜单 */
.user-dropdown {
    position: relative;
}

.user-avatar-btn {
    padding: 0;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    transition: var(--transition);
}

.user-avatar-btn:hover .user-avatar {
    box-shadow: 0 0 0 2px var(--primary-color);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    overflow: hidden;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--text-color);
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--bg-color);
    color: var(--primary-color);
}

.dropdown-icon {
    width: 18px;
    height: 18px;
}

/* 登录/注册按钮 */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn {
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary {
    color: white;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

/* 汉堡菜单按钮（移动端） */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 8px;
    border-radius: 4px;
}

.hamburger-btn:hover {
    background-color: var(--bg-color);
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background-color: var(--text-color);
    border-radius: 1px;
    transition: var(--transition);
}

.hamburger-line + .hamburger-line {
    margin-top: 4px;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* =============================================
   主体容器
   ============================================= */
.main-container {
    display: flex;
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
}

/* =============================================
   左侧菜单栏
   ============================================= */
.sidebar {
    position: fixed;
    left: 0;
    top: var(--header-height);
    width: var(--sidebar-width);
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-color);
    border-right: 1px solid var(--border-color);
    overflow-y: auto;
    transition: var(--transition);
    z-index: 900;
}

.sidebar-nav {
    padding: 8px 0;
}

.menu-item {
    display: flex;
    align-items: center;
    height: 48px;
    padding: 0 20px;
    color: var(--text-color);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.menu-item:hover {
    background-color: #e8e8e8;
}

.menu-item.active {
    background-color: var(--bg-white);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

.menu-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0;
}

.menu-text {
    font-size: 14px;
    white-space: nowrap;
}

/* 遮罩层 */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 850;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.show {
    display: block;
    opacity: 1;
}

/* =============================================
   右侧内容区域
   ============================================= */
.content {
    flex: 1;
    margin-left: var(--sidebar-width);
    min-height: calc(100vh - var(--header-height));
    background-color: var(--bg-white);
    padding: 24px;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.page-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 8px;
}

.page-desc {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* 仪表盘卡片 */
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.dashboard-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

.dashboard-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.card-icon.blue {
    background: linear-gradient(135deg, #3388ff, #5599ff);
}

.card-icon.green {
    background: linear-gradient(135deg, #52c41a, #73d13d);
}

.card-icon.orange {
    background: linear-gradient(135deg, #fa8c16, #ffa940);
}

.card-icon.purple {
    background: linear-gradient(135deg, #722ed1, #9254de);
}

.card-info {
    display: flex;
    flex-direction: column;
}

.card-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.card-value {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-color);
}

/* 推荐页功能入口网格 */
.recommend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 120px));
    gap: 20px;
    margin-top: 16px;
}

.recommend-entry {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 12px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    cursor: pointer;
}

.recommend-entry:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.recommend-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.recommend-icon svg {
    width: 28px;
    height: 28px;
}

.recommend-icon.checkin-icon {
    background: linear-gradient(135deg, #3388ff, #5599ff);
    color: #fff;
}

.recommend-icon.checkin-icon svg {
    stroke: #fff;
}

.recommend-icon.practice-icon {
    background: linear-gradient(135deg, #52c41a, #73d13d);
    color: #fff;
}

.recommend-icon.practice-icon svg {
    stroke: #fff;
}

.recommend-icon.history-icon {
    background: linear-gradient(135deg, #fa8c16, #ffa940);
    color: #fff;
}

.recommend-icon.history-icon svg {
    stroke: #fff;
}

.recommend-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
    text-align: center;
}

/* =============================================
   响应式设计 - 平板
   ============================================= */
@media screen and (max-width: 992px) {
    .sidebar {
        width: 200px;
    }
    
    .content {
        margin-left: 200px;
    }
    
    .dashboard-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =============================================
   响应式设计 - 手机
   ============================================= */
@media screen and (max-width: 768px) {
    .header {
        padding: 0 16px;
    }
    
    .site-name {
        font-size: 14px;
    }
    
    .hamburger-btn {
        display: flex;
    }
    
    .auth-buttons {
        display: none;
    }
    
    .notification-wrapper,
    .user-dropdown {
        display: none;
    }
    
    /* 移动端显示登录/注册和用户信息在菜单中 */
    .sidebar {
        transform: translateX(-100%);
        width: 260px;
    }
    
    .sidebar.show {
        transform: translateX(0);
    }
    
    .content {
        margin-left: 0;
        padding: 16px;
    }
    
    .page-title {
        font-size: 20px;
    }
    
    .dashboard-cards {
        grid-template-columns: 1fr;
    }
    
    .dashboard-card {
        padding: 16px;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
    }
    
    .card-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .card-value {
        font-size: 20px;
    }
}

/* =============================================
   滚动条样式
   ============================================= */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #c0c0c0;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a0a0a0;
}

/* =============================================
   登录弹窗样式
   ============================================= */
.login-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.login-modal-overlay.show {
    display: flex;
    opacity: 1;
}

.login-modal {
    width: 100%;
    max-width: 420px;
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: loginModalFadeUp 0.3s ease;
}

@keyframes loginModalFadeUp {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.login-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    font-size: 20px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 1;
}

.login-modal-close:hover {
    background: #e8e8e8;
    color: #333;
}

/* 弹窗头部 */
.login-modal-header {
    padding: 32px 32px 20px;
    text-align: center;
}

.login-modal-header-inner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}

.login-modal-header-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: contain;
    display: block;
}

.login-modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    line-height: 36px;
}

.login-modal-subtitle {
    font-size: 14px;
    color: #64748b;
}

/* 弹窗 Tab 切换 */
.login-modal-tabs {
    display: flex;
    margin: 0 32px;
    border-bottom: 1px solid #e2e8f0;
}

.login-tab-btn {
    flex: 1;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    color: #94a3b8;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    bottom: -1px;
}

.login-tab-btn:hover {
    color: #64748b;
}

.login-tab-btn.active {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
}

/* 弹窗表单 */
.login-tab-content {
    display: none;
}

.login-tab-content.active {
    display: block;
}

.login-modal-form {
    padding: 24px 32px 8px;
}

.login-form-group {
    margin-bottom: 20px;
    position: relative;
}

.login-form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 6px;
}

.login-input-wrapper {
    position: relative;
}

.login-form-input {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    padding-left: 40px;
    font-size: 14px;
    color: #1e293b;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    outline: none;
    transition: all 0.2s ease;
    font-family: inherit;
}

.login-form-input::placeholder {
    color: #94a3b8;
}

.login-form-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.login-form-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}

.login-input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.login-form-input:focus ~ .login-input-icon,
.login-input-wrapper .login-form-input:focus + .login-input-icon {
    color: #3b82f6;
}

.login-password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 2px;
    font-size: 16px;
    line-height: 1;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.login-password-toggle:hover {
    color: #64748b;
}

.login-form-error {
    display: none;
    font-size: 12px;
    color: #ef4444;
    margin-top: 4px;
    padding-left: 2px;
}

.login-form-error.show {
    display: block;
    animation: loginShake 0.3s ease;
}

@keyframes loginShake {
    0%, 100% { transform: translateX(0); }
    25%      { transform: translateX(-4px); }
    75%      { transform: translateX(4px); }
}

/* 记住我 */
.login-form-extra {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.login-remember-me {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748b;
    cursor: pointer;
}

.login-checkbox-input {
    width: 15px;
    height: 15px;
    cursor: pointer;
    accent-color: #3b82f6;
}

/* 验证码输入框 */
.login-code-wrapper {
    display: flex;
    gap: 10px;
}

.login-code-wrapper .login-code-input {
    flex: 1;
    min-width: 0;
}

.login-btn-send-code {
    flex-shrink: 0;
    width: 120px;
    height: 44px;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 500;
    color: #3b82f6;
    background: #eff6ff;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: inherit;
}

.login-btn-send-code:hover:not(:disabled) {
    background: #3b82f6;
    color: #fff;
}

.login-btn-send-code:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    color: #94a3b8;
    background: #f1f5f9;
}

/* 登录按钮 */
.login-modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    padding: 0 24px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: #3b82f6;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.login-modal-btn:hover:not(:disabled) {
    background: #2563eb;
}

.login-modal-btn:active:not(:disabled) {
    transform: scale(0.98);
}

.login-modal-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.login-modal-btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.login-modal-btn.loading::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: loginSpin 0.6s linear infinite;
}

@keyframes loginSpin { to { transform: rotate(360deg); } }

/* 弹窗底部区域 */
.login-modal-footer {
    padding: 0 32px 32px;
}

.login-modal-divider {
    display: flex;
    align-items: center;
    margin: 16px 0 20px;
    gap: 12px;
}

.login-modal-divider::before,
.login-modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.login-modal-divider span {
    font-size: 12px;
    color: #94a3b8;
    white-space: nowrap;
}

.login-modal-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.login-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 42px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    color: #1e293b;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.login-social-btn:hover {
    border-color: #07c160;
    background: #f0fdf4;
}

.login-wechat-icon {
    display: flex;
    align-items: center;
}

.login-modal-register {
    text-align: center;
    font-size: 13px;
    color: #64748b;
}

.login-modal-register a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.login-modal-register a:hover {
    text-decoration: underline;
}

/* 登录消息提示 */
.login-message-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-80px);
    padding: 10px 20px;
    background: #1e293b;
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 3000;
    opacity: 0;
    transition: 0.25s ease;
    white-space: nowrap;
    max-width: 90vw;
    text-align: center;
}

.login-message-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.login-message-toast.success { background: #10b981; }
.login-message-toast.error   { background: #ef4444; }

/* 弹窗响应式 - 平板 */
@media (max-width: 768px) {
    .login-modal-overlay {
        padding: 16px 12px;
        align-items: flex-start;
        padding-top: 48px;
    }
    .login-modal { max-width: 100%; }
    .login-modal-header { padding: 24px 20px 16px; }
    .login-modal-title { font-size: 20px; }
    .login-modal-tabs { margin: 0 20px; }
    .login-modal-form { padding: 20px 20px 8px; }
    .login-modal-footer { padding: 0 20px 24px; }
    .login-form-input {
        height: 46px;
        font-size: 16px;
    }
    .login-modal-btn { height: 46px; }
    .login-btn-send-code { height: 46px; }
}

/* 弹窗响应式 - 小屏手机 */
@media (max-width: 380px) {
    .login-modal-overlay { padding: 8px; padding-top: 24px; }
    .login-modal-header { padding: 20px 16px 12px; }
    .login-modal-title { font-size: 18px; }
    .login-modal-tabs { margin: 0 16px; }
    .login-tab-btn { font-size: 13px; padding: 10px 0; }
    .login-modal-form { padding: 16px 16px 4px; }
    .login-modal-footer { padding: 0 16px 20px; }
    .login-form-group { margin-bottom: 16px; }
    .login-form-label { font-size: 12px; }
    .login-form-input { height: 42px; padding: 0 12px; padding-left: 36px; }
    .login-modal-btn { height: 42px; font-size: 14px; }
    .login-btn-send-code { width: 100px; height: 42px; font-size: 12px; }
}

/* =============================================
   用户信息完善提示弹窗
   ============================================= */
.confirm-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.confirm-modal.show {
    opacity: 1;
    visibility: visible;
}

.confirm-modal-content {
    width: 100%;
    max-width: 320px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.25s ease;
}

.confirm-modal.show .confirm-modal-content {
    transform: scale(1);
}

.confirm-modal-body {
    padding: 24px 20px;
    text-align: center;
}

.confirm-modal-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
}

.confirm-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.confirm-modal-message {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.confirm-modal-footer {
    display: flex;
    border-top: 1px solid #e2e8f0;
}

.confirm-modal-btn {
    flex: 1;
    height: 48px;
    border: none;
    background: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.confirm-modal-btn:first-child {
    border-right: 1px solid #e2e8f0;
    color: #64748b;
}

.confirm-modal-btn:first-child:hover {
    background: #f1f5f9;
}

.confirm-modal-btn:last-child {
    color: #3b82f6;
}

.confirm-modal-btn:last-child:hover {
    background: #eff6ff;
}
