/* PayAI邀请系统前端样式 */

.payai-invite-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
}

.payai-invite-header {
    text-align: center;
    margin-bottom: 15px;
    padding: 15px 0;
}

.payai-invite-header h1 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1.8rem;
    font-weight: 600;
}

.payai-invite-header p {
    color: #6c757d;
    font-size: 14px;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.4;
}

.payai-invite-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 专属邀请链接区域 */
.invite-link-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e1e5e9;
    border-radius: 12px;
    padding: 20px;
    margin: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.invite-link-section:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.invite-link-section h3 {
    margin: 0 0 12px 0;
    font-size: 16px;
    color: #2c3e50;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.invite-link-section h3::before {
    content: "🔗";
    font-size: 18px;
}

.invite-link-input {
    display: flex;
    gap: 12px;
    align-items: center;
    background: white;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.invite-link-input input {
    flex: 1;
    padding: 10px 12px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    background: transparent;
    color: #495057;
    font-family: 'Courier New', monospace;
}

.invite-link-input input:focus {
    outline: none;
    background: #f8f9fa;
}

.copy-btn, .share-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.copy-btn {
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(0,124,186,0.3);
}

.copy-btn:hover {
    background: linear-gradient(135deg, #005a87 0%, #004066 100%);
    box-shadow: 0 4px 8px rgba(0,124,186,0.4);
    transform: translateY(-1px);
}

.share-btn {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(40,167,69,0.3);
}

.share-btn:hover {
    background: linear-gradient(135deg, #1e7e34 0%, #155724 100%);
    box-shadow: 0 4px 8px rgba(40,167,69,0.4);
    transform: translateY(-1px);
}

.payai-reward-overview::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.payai-reward-overview h3 {
    margin: 0 0 20px 0;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.reward-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.reward-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    min-height: 80px;
}

.reward-card:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.reward-icon {
    font-size: 28px;
    min-width: 40px;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.reward-amount {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.reward-label {
    font-size: 13px;
    opacity: 0.95;
    margin-bottom: 2px;
    font-weight: 600;
}

.reward-desc {
    font-size: 11px;
    opacity: 0.8;
    line-height: 1.3;
}

.total-earnings {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(20px);
}

.total-amount {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.total-label {
    font-size: 16px;
    opacity: 0.95;
    font-weight: 600;
}

/* 激励信息 */
.payai-incentive-info {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.payai-incentive-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #28a745, #20c997);
}

.payai-incentive-info h4 {
    margin: 0 0 25px 0;
    color: #2c3e50;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.incentive-rules {
    display: grid;
    gap: 18px;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #f1f3f4;
    transition: all 0.3s ease;
}

.rule-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #28a745;
}

.rule-icon {
    font-size: 24px;
    min-width: 35px;
    margin-top: 2px;
}

.rule-text {
    color: #495057;
    line-height: 1.6;
    font-size: 15px;
    font-weight: 500;
}



/* 邀请链接区域 */
.payai-invite-link-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.payai-invite-link-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.payai-invite-link-container h3 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.payai-invite-link-container p {
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.payai-invite-link {
    display: flex;
    gap: 15px;
    margin: 25px 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.payai-invite-link input {
    flex: 1;
    min-width: 350px;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.payai-invite-link input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
    transform: translateY(-1px);
}

.payai-copy-btn, .payai-share-btn {
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payai-copy-btn {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.payai-copy-btn:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f5f8b 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.payai-share-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.payai-share-btn:hover {
    background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

/* 邀请进度 */
.payai-progress-section {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.payai-progress-section h4 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 8px;
}

.progress-items {
    display: grid;
    gap: 15px;
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.progress-item:hover {
    background: #e9ecef;
}

.progress-icon {
    font-size: 24px;
    min-width: 40px;
    text-align: center;
}

.progress-title {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 3px;
}

.progress-desc {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 5px;
}

.progress-status {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
}

.progress-status.completed {
    background: #d4edda;
    color: #155724;
}

.progress-status.pending {
    background: #fff3cd;
    color: #856404;
}

/* 分享工具 */
.payai-share-tools {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.payai-share-tools h4 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    font-size: 14px;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.share-btn.wechat {
    background: #07c160;
}

.share-btn.qq {
    background: #12b7f5;
}

.share-btn.weibo {
    background: #e6162d;
}

.share-btn.copy {
    background: #6c757d;
}

.share-icon {
    font-size: 20px;
}

/* 邀请用户列表 */
.payai-invited-users-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.payai-invited-users-container h4 {
    margin: 0 0 30px 0;
    color: #2c3e50;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* 邀请用户表格 - Bootstrap风格 */
.payai-invited-users-container {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 20px;
    margin: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.payai-invited-users-container h4 {
    margin: 0 0 16px 0;
    font-size: 16px;
    color: #495057;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 1px solid #dee2e6;
}

.invited-users-table-container {
    overflow-x: auto;
}

.invited-users-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 0;
    background: white;
    border: 1px solid #dee2e6;
}

.invited-users-table th {
    background-color: #f8f9fa;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
    border-right: 1px solid #dee2e6;
}

.invited-users-table th:last-child {
    border-right: none;
}

.invited-users-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    color: #495057;
    vertical-align: middle;
}

.invited-users-table td:last-child {
    border-right: none;
}

.invited-users-table tbody tr:hover {
    background-color: #f5f5f5;
}

.invited-users-table tbody tr:last-child td {
    border-bottom: none;
}

.user-info-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar-small img {
    border-radius: 50%;
    border: 1px solid #dee2e6;
    width: 32px;
    height: 32px;
}

.user-name {
    font-weight: 500;
    color: #495057;
    font-size: 14px;
}

.date-cell {
    color: #6c757d;
    font-size: 13px;
}

.user-status {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    min-width: 60px;
}

.user-status.activated {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.user-status.pending {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

/* 排行榜 */
.payai-leaderboard-section {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.payai-leaderboard-section h4 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 8px;
}

.leaderboard-list {
    display: grid;
    gap: 10px;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.leaderboard-item:hover {
    background: #e9ecef;
}

.leaderboard-item.current-user {
    background: #e3f2fd;
    border: 2px solid #2196f3;
}

.rank {
    font-size: 20px;
    min-width: 40px;
    text-align: center;
    font-weight: bold;
}

.leader-name {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 3px;
}

.leader-stats {
    font-size: 12px;
    color: #6c757d;
}

/* 邀请技巧 */
.payai-tips-section {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.payai-tips-section h4 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tips-list {
    display: grid;
    gap: 12px;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #ffc107;
}

.tip-icon {
    font-size: 18px;
    min-width: 25px;
    margin-top: 2px;
}

/* 通知样式 */
.payai-notification {
    position: fixed;
    top: 30px;
    right: 30px;
    padding: 20px 25px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 15px;
    z-index: 10000;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    max-width: 350px;
    min-width: 250px;
}

.payai-notification.show {
    transform: translateX(0);
}

.payai-notification.success {
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 0 8px 30px rgba(40, 167, 69, 0.3);
}

.payai-notification.info {
    background: linear-gradient(135deg, #17a2b8, #3498db);
    box-shadow: 0 8px 30px rgba(23, 162, 184, 0.3);
}

.payai-notification.warning {
    background: linear-gradient(135deg, #ffc107, #f39c12);
    color: #212529;
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.3);
}

.payai-notification.error {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    box-shadow: 0 8px 30px rgba(220, 53, 69, 0.3);
}

/* 响应式设计 */
@media screen and (max-width: 1024px) {
    .payai-invite-page {
        padding: 15px;
    }

    .payai-invite-container {
        max-width: 900px;
    }

    .reward-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }


}

@media screen and (max-width: 768px) {
    .payai-invite-page {
        padding: 15px;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    }

    .payai-invite-header h1 {
        font-size: 2rem;
    }

    .payai-invite-header p {
        font-size: 16px;
    }

    .payai-reward-overview {
        padding: 25px;
        border-radius: 16px;
    }

    .reward-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .reward-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }



    .payai-invite-link {
        flex-direction: column;
        gap: 12px;
    }

    .payai-invite-link input {
        min-width: auto;
        margin-bottom: 0;
    }

    .payai-copy-btn, .payai-share-btn {
        width: 100%;
        justify-content: center;
    }

    .invited-users-table-container {
        overflow-x: auto;
    }

    .invited-users-table {
        min-width: 500px;
    }

    .invited-users-table th,
    .invited-users-table td {
        padding: 12px 16px;
    }

    .user-info-cell {
        gap: 8px;
    }

    .user-avatar-small img {
        width: 28px;
        height: 28px;
    }
    }

    .payai-notification {
        right: 15px;
        left: 15px;
        top: 20px;
        transform: translateY(-100px);
        max-width: none;
    }

    .payai-notification.show {
        transform: translateY(0);
    }
}

@media screen and (max-width: 480px) {
    .payai-invite-page {
        padding: 10px;
    }

    .payai-invite-header {
        padding: 20px 0;
        margin-bottom: 25px;
    }

    .payai-invite-header h1 {
        font-size: 1.8rem;
    }

    .payai-reward-overview,
    .payai-incentive-info,
    .payai-invite-link-container,
    .payai-invited-users-container {
        padding: 20px;
        border-radius: 12px;
    }

    .reward-cards {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .reward-card {
        padding: 12px;
        gap: 8px;
        min-height: 60px;
    }

    .reward-icon {
        font-size: 20px;
        min-width: 30px;
    }

    .reward-amount {
        font-size: 18px;
    }

    .reward-label {
        font-size: 11px;
    }

    .reward-desc {
        font-size: 9px;
    }

    .total-amount {
        font-size: 24px;
    }

    .total-label {
        font-size: 13px;
    }



    .payai-invite-link input {
        padding: 14px 16px;
        font-size: 14px;
    }

    .payai-copy-btn, .payai-share-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* Bootstrap风格表格样式 */
.reward-table-section, .rules-table-section {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 20px;
    margin: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.reward-table-section h3, .rules-table-section h3 {
    margin: 0 0 16px 0;
    font-size: 16px;
    color: #495057;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 1px solid #dee2e6;
}

.reward-table, .rules-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 0;
    background: white;
    border: 1px solid #dee2e6;
}

.reward-table th, .rules-table th {
    background-color: #f8f9fa;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
    border-right: 1px solid #dee2e6;
}

.reward-table th:last-child, .rules-table th:last-child {
    border-right: none;
}

.reward-table td, .rules-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    color: #495057;
    vertical-align: middle;
}

.reward-table td:last-child, .rules-table td:last-child {
    border-right: none;
}

.reward-table tbody tr:hover, .rules-table tbody tr:hover {
    background-color: #f5f5f5;
}

.reward-table tbody tr:last-child td, .rules-table tbody tr:last-child td {
    border-bottom: none;
}

.reward-table .amount {
    font-weight: 600;
    color: #28a745;
    text-align: right;
    font-size: 14px;
}

.reward-table .total-row {
    background-color: #d4edda;
    border-top: 2px solid #28a745;
}

.reward-table .total-row .amount.total {
    color: #155724;
    font-size: 15px;
    font-weight: 700;
}

.reward-table .total-row td {
    font-weight: 600;
    color: #155724;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .payai-invite-page {
        padding: 5px;
    }

    .invite-link-section, .reward-table-section, .rules-table-section, .payai-invited-users-container {
        margin: 10px 5px;
        padding: 15px;
    }

    .invite-link-input {
        flex-direction: column;
        gap: 8px;
        padding: 6px;
    }

    .copy-btn, .share-btn {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .reward-table, .rules-table, .invited-users-table {
        font-size: 12px;
    }

    .reward-table th, .rules-table th, .invited-users-table th,
    .reward-table td, .rules-table td, .invited-users-table td {
        padding: 8px 10px;
    }

    .user-avatar-small img {
        width: 28px;
        height: 28px;
    }

    .user-status {
        font-size: 10px;
        padding: 4px 8px;
    }
}

@media (max-width: 480px) {
    .invite-link-section h3, .reward-table-section h3, .rules-table-section h3, .payai-invited-users-container h4 {
        font-size: 14px;
    }

    .reward-table th, .rules-table th, .invited-users-table th,
    .reward-table td, .rules-table td, .invited-users-table td {
        padding: 6px 8px;
        font-size: 11px;
    }
}