/*1. .main-card - max-width: 1200px
2. .stats-card - max-width: 1200px
3. .form-section - max-width: 1200px
4. .status-section - max-width: 1200px
表单区域、查询状态区域、联系卡片、统计卡片*/
.form-page ::selection {
    background: #5FD6C7;
    color: #FFFFFF;
}

.form-page {
    min-height: 100vh;
    padding: 40px 40px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(180deg, #E8F7FF 0%, #F0F9FF 100%);
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(95, 214, 199, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(95, 214, 199, 0.1) 0%, transparent 50%);
    position: relative;
    box-sizing: border-box;
}

.form-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(95, 214, 199, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(95, 214, 199, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.page-header {
    position: relative;
    padding: 20px 0 10px 0;
    margin-bottom: 16px;
}

.site-logo-wrapper {
    position: absolute;
    top: -40px;/*logo向上移动*/
    left: 0;
}

.site-logo {
    height: 50px;
    width: auto;
    margin-top: 0;
}

.site-logo-wrapper img {
    height: 50px !important;
    width: auto !important;
    display: block;
}

.header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 60px;/*logo和标题错开*/
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    color: #2F2F2F;
    margin: 0 0 12px 0;
}

.page-subtitle {
    font-size: 16px;
    color: #9CA3AF;
    margin: 0;
}

.main-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 32px;
    border: none;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.card-header-section {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.avatar-wrapper {
    flex-shrink: 0;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #F0F0F0;
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5FD6C7 0%, #56CBBA 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: white;
    border: 3px solid #F0F0F0;
}

.card-info {
    flex: 1;
}

.card-title {
    font-size: 26px;
    font-weight: 600;
    color: #2F2F2F;
    margin: 0 0 8px 0;
}

.card-subtitle {
    font-size: 16px;
    color: #9CA3AF;
    margin: 0;
}

.card-divider {
    height: 1px;
    background: #F0F0F0;
    margin: 32px 0;
}

.contact-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 32px;
    border-radius: 12px;
    padding: 8px;
    background: #F8F9FA;
    max-width: 400px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.contact-tab {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: #FFFFFF;
    color: #666666;
}

.contact-tab.active {
    background: #5FD6C7;
    color: white;
}

.contact-tab:not(.active):hover {
    background: #F0F0F0;
}

.qrcode-section {
    text-align: center;
}

.qrcode-wrapper {
    display: inline-block;
    padding: 20px;
    background: white;
    border-radius: 16px;
    border: 1px solid #F0F0F0;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.qrcode-wrapper.hidden {
    display: none;
}

.qrcode {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.qrcode-placeholder {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: #CCCCCC;
    background: #F8F9FA;
    border-radius: 12px;
}

.qrcode-desc {
    font-size: 16px;
    color: #9CA3AF;
    margin: 0;
}

.stats-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 32px;
    border: none;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    justify-content: center;
}

.stat-item {
    display: flex;
    align-items: baseline;
    gap: 12px;
    justify-content: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
}

.stat-label {
    font-size: 16px;
    color: #666666;
}

.form-page .notice-box {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #666666;
    font-size: 16px;
    border: none;
    position: relative;
    z-index: 1;
}

.form-page .notice-box i {
    color: #5FD6C7;
    font-size: 24px;
}

.form-section-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    width: 100%;
}

.form-page .form-section,
.form-page .status-section {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 32px;
    border: none;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    flex-shrink: 0;
}

.status-section {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.form-page .section-title {
    font-size: 24px;
    font-weight: 600;
    color: #2F2F2F;
    margin: 0 0 32px 0;
    padding-bottom: 24px;
    border-bottom: 1px solid #F0F0F0;
}

.form-page .form-group {
    margin-bottom: 28px;
}

.form-page .form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #2F2F2F;
    margin-bottom: 10px;
}

.form-page .form-group .required {
    color: #FF4757;
}

.form-page .form-group input[type="text"],
.form-page .form-group input[type="tel"],
.form-page .form-group select,
.form-page .form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #EDEDED;
    border-radius: 12px;
    font-size: 16px;
    color: #2F2F2F;
    box-sizing: border-box;
    background: #FAFAFA;
}

.form-page .form-group input[type="text"]:focus,
.form-page .form-group input[type="tel"]:focus,
.form-page .form-group select:focus,
.form-page .form-group textarea:focus {
    outline: none;
    border-color: #5FD6C7;
    background: white;
}

.form-page .form-group input[type="file"] {
    width: 100%;
    padding: 16px;
    border: 2px dashed #EDEDED;
    border-radius: 12px;
    cursor: pointer;
    background: #FAFAFA;
    display: none;
}

.file-upload-wrapper {
    position: relative;
    width: 100%;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border: 2px dashed #EDEDED;
    border-radius: 12px;
    cursor: pointer;
    background: #FAFAFA;
    transition: all 0.2s;
}

.file-upload-label:hover {
    border-color: #5FD6C7;
    background: rgba(95, 214, 199, 0.05);
}

.file-upload-label i {
    font-size: 32px;
    color: #5FD6C7;
    margin-bottom: 12px;
}

.file-upload-label span {
    font-size: 16px;
    color: #666666;
    font-weight: 500;
}

.file-hint {
    font-size: 12px;
    color: #999;
    margin-top: 12px;
    margin-bottom: 0;
    text-align: center;
}

.image-preview {
    margin-top: 12px;
    text-align: center;
}

.image-preview img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 12px;
    border: 1px solid #EDEDED;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.remove-preview-btn {
    margin-top: 12px;
    padding: 10px 20px;
    background: #F0F0F0;
    border: none;
    border-radius: 8px;
    color: #666666;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.remove-preview-btn:hover {
    background: #E0E0E0;
    color: #333333;
}

.form-page .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.card-number-display {
    background: rgba(95, 214, 199, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 28px;
    text-align: center;
}

.card-number-label {
    font-size: 14px;
    color: #666;
    margin-right: 8px;
}

.card-number-value {
    font-size: 20px;
    font-weight: 600;
    color: #5FD6C7;
    letter-spacing: 2px;
}

.card-number-input {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
}

.inline-prefix-input {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    overflow: hidden;
}

.inline-prefix {
    padding: 14px 18px;
    background: rgba(95, 214, 199, 0.1);
    color: #5FD6C7;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    border-right: 1px solid #E0E0E0;
}

.inline-prefix-input input {
    flex: 1;
    border: none;
    border-radius: 0;
    padding: 14px 18px;
    font-size: 14px;
    background: transparent;
}

.prefix-hint {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
    margin-bottom: 0;
}

.submitted-indicator {
    text-align: center;
    padding: 16px;
    background: rgba(95, 214, 199, 0.1);
    color: #5FD6C7;
    border-radius: 12px;
    font-weight: 500;
    margin-top: 8px;
}

.form-page .form-group input.readonly {
    background: #F0F9FA;
    cursor: not-allowed;
}

.form-page .form-group #card_number {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
}

.form-page .submit-btn {
    width: 100%;
    padding: 18px;
    background: #5FD6C7;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    margin-bottom: 40px;
}

.radio-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.checkbox-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.checkbox-option {
    flex: 1;
    min-width: 100px;
    padding: 14px 20px;
    border: 1px solid #EDEDED;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
    background: #FAFAFA;
}

.checkbox-option:hover {
    border-color: #5FD6C7;
}

.checkbox-option input[type="checkbox"] {
    display: none;
}

.checkbox-option input[type="checkbox"]:checked + span {
    color: #5FD6C7;
    font-weight: 600;
}

.checkbox-option input[type="checkbox"]:checked + span::before {
    content: '✓ ';
}

.radio-option {
    flex: 1;
    min-width: 100px;
    padding: 14px 20px;
    border: 1px solid #EDEDED;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
    background: #FAFAFA;
}

.radio-option:hover {
    border-color: #5FD6C7;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-option input[type="radio"]:checked + span {
    color: #5FD6C7;
    font-weight: 600;
}

.radio-option input[type="radio"]:checked + span::before {
    content: '✓ ';
}

.info-section {
    background: #F8FAFB;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 28px;
}

.info-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2F2F2F;
    margin: 0 0 20px 0;
}

.info-row {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #EDEDED;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 500;
    color: #666666;
    min-width: 120px;
}

.card-style-selector {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.card-style-option {
    flex: 1;
    cursor: pointer;
    min-width: 200px;
}

.card-style-option input[type="radio"] {
    display: none;
}

.card-preview {
    border: 2px solid #EDEDED;
    border-radius: 16px;
    padding: 16px;
    transition: border-color 0.2s;
}

.card-style-option input[type="radio"]:checked + .card-preview {
    border-color: #5FD6C7;
}

.card-image {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.card-label {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 16px;
    color: #2F2F2F;
}

.form-page #status-check {
    padding: 0;
}

.form-page #status-check h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2F2F2F;
    margin: 0 0 20px 0;
}

.form-page .status-form {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.form-page .status-form .status-search-type {
    padding: 16px 12px;
    border: 1px solid #EDEDED;
    border-radius: 12px;
    font-size: 16px;
    background: #FAFAFA;
    box-sizing: border-box;
    height: 54px;
    min-width: 120px;
    cursor: pointer;
    flex-shrink: 0;
}

.form-page .status-form input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid #EDEDED;
    border-radius: 12px;
    font-size: 16px;
    background: #FAFAFA;
    box-sizing: border-box;
    height: 54px;
    line-height: normal;
}

.form-page .status-form button {
    padding: 16px 32px;
    background: #5FD6C7;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    box-sizing: border-box;
    height: 54px;
}

.form-page #status-result {
    padding: 20px;
    border-radius: 12px;
    font-size: 16px;
}

.form-page #status-result.success {
    background: rgba(95, 214, 199, 0.1);
    color: #2F2F2F;
    border: 1px solid rgba(95, 214, 199, 0.2);
}

.form-page #status-result.error {
    background: rgba(255, 71, 87, 0.1);
    color: #FF4757;
    border: 1px solid rgba(255, 71, 87, 0.2);
}

.form-page .footer {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.form-page .footer p {
    font-size: 14px;
    color: #9CA3AF;
    margin: 0;
}

.zibll-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 20px 28px;
    border-radius: 16px;
    font-size: 16px;
    color: #FFFFFF;
    z-index: 99999;
    max-width: 400px;
}

.zibll-notification.success {
    background: #5FD6C7;
}

.zibll-notification.error {
    background: #FF4757;
}

.zibll-notification.info {
    background: #6B7280;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #FFFFFF;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 28px 28px 20px;
    border-bottom: 1px solid #F0F0F0;
}

.modal-title {
    font-size: 24px;
    font-weight: 600;
    color: #2F2F2F;
    margin: 0;
}

.modal-body {
    padding: 28px;
    overflow-y: auto;
    flex: 1;
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
}

.modal-body p {
    margin: 0 0 16px 0;
}

.modal-body ul,
.modal-body ol {
    margin: 0 0 16px 0;
    padding-left: 24px;
}

.modal-body li {
    margin-bottom: 8px;
}

.modal-footer {
    padding: 20px 28px 28px;
    border-top: 1px solid #F0F0F0;
    text-align: center;
}

.modal-timer {
    font-size: 16px;
    color: #666666;
    margin-bottom: 20px;
}

.modal-timer span {
    font-weight: 600;
    color: #5FD6C7;
}

.modal-btn {
    padding: 16px 40px;
    background: #5FD6C7;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    cursor: not-allowed;
    opacity: 0.5;
}

.modal-btn.enabled {
    cursor: pointer;
    opacity: 1;
}

@media (max-width: 1200px) {
    .form-page {
        max-width: 100%;
        padding: 30px 20px;
    }
    
    .main-card,
    .stats-card {
        max-width: 900px;
    }
    
    .stats-grid {
        gap: 32px;
    }
}

@media (max-width: 1024px) {
    .form-page {
        padding: 24px 16px;
    }
    
    .form-section-wrapper {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .main-card,
    .stats-card {
        padding: 32px;
    }
    
    .form-section,
    .status-section {
        padding: 32px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .contact-tab {
        padding: 14px 24px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .form-page {
        max-width: 100%;
        padding: 20px 16px;
    }
    
    .page-header {
        padding: 16px 0;
        padding-top: 60px;
    }
    
    .site-logo-wrapper {
        margin-top: 0;
        margin-bottom: 16px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 14px;
    }
    
    .main-card,
    .stats-card,
    .form-section,
    .status-section {
        padding: 24px;
        border-radius: 16px;
    }
    
    .card-header-section {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .avatar {
        width: 80px;
        height: 80px;
    }
    
    .avatar-placeholder {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
    
    .card-title {
        font-size: 22px;
    }
    
    .card-subtitle {
        font-size: 14px;
    }
    
    .qrcode {
        width: 180px;
        height: 180px;
    }
    
    .qrcode-placeholder {
        width: 180px;
        height: 180px;
        font-size: 48px;
    }
    
    .qrcode-wrapper {
        padding: 16px;
    }
    
    .stats-grid {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .status-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .status-form input,
    .status-form select,
    .status-form button {
        width: 100%;
        min-width: auto;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .radio-option {
        min-width: auto;
        padding: 12px 16px;
    }
    
    .contact-tabs {
        max-width: 100%;
    }
    
    .contact-tab {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 20px;
        padding-bottom: 20px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 16px;
        font-size: 16px;
    }
    
    .file-upload-label {
        padding: 30px 20px;
    }
    
    .info-row {
        flex-direction: column;
        gap: 4px;
    }
    
    .info-label {
        min-width: auto;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .form-page {
        max-width: 100%;
        padding: 12px 10px;
    }
    
    .page-title {
        font-size: 22px;
    }
    
    .page-subtitle {
        font-size: 13px;
    }
    
    .main-card,
    .stats-card,
    .form-section,
    .status-section {
        padding: 16px;
        border-radius: 12px;
    }
    
    .card-header-section {
        gap: 12px;
    }
    
    .avatar {
        width: 64px;
        height: 64px;
    }
    
    .avatar-placeholder {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-subtitle {
        font-size: 13px;
    }
    
    .card-divider {
        margin: 20px 0;
    }
    
    .qrcode {
        width: 140px;
        height: 140px;
    }
    
    .qrcode-placeholder {
        width: 140px;
        height: 140px;
        font-size: 36px;
    }
    
    .qrcode-wrapper {
        padding: 12px;
    }
    
    .qrcode-desc {
        font-size: 14px;
    }
    
    .stats-grid {
        gap: 12px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        text-align: center;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .contact-tab {
        padding: 12px 12px;
        font-size: 13px;
    }
    
    .section-title {
        font-size: 18px;
        padding-bottom: 16px;
        margin-bottom: 24px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .form-page .form-group input[type="text"],
    .form-page .form-group input[type="tel"],
    .form-page .form-group select,
    .form-page .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .form-page .submit-btn {
        padding: 14px;
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .radio-option {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .file-upload-label {
        padding: 24px 16px;
    }
    
    .file-upload-label i {
        font-size: 28px;
    }
    
    .file-upload-label span {
        font-size: 14px;
    }
    
    .file-hint {
        font-size: 11px;
    }
    
    .card-number-display {
        padding: 12px 14px;
    }
    
    .card-number-value {
        font-size: 16px;
    }
    
    .inline-prefix {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .inline-prefix-input input {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .info-section {
        padding: 16px;
    }
    
    .info-section h3 {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .info-row {
        padding: 8px 0;
    }
    
    .info-label {
        font-size: 13px;
    }
    
    .card-style-option {
        min-width: calc(50% - 8px);
    }
    
    .card-preview {
        padding: 12px;
    }
    
    .card-label {
        font-size: 14px;
        margin-top: 8px;
    }
    
    #status-check h3 {
        font-size: 18px;
    }
    
    .status-form input,
    .status-form select {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .status-form button {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    #status-result {
        padding: 16px;
        font-size: 14px;
    }
    
    .footer {
        padding: 24px 16px;
    }
    
    .footer p {
        font-size: 12px;
    }
    
    .zibll-notification {
        right: 10px;
        left: 10px;
        max-width: none;
        padding: 16px 20px;
        font-size: 14px;
    }
    
    .modal-content {
        width: 95%;
        border-radius: 16px;
    }
    
    .modal-header {
        padding: 20px 20px 14px;
    }
    
    .modal-title {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 20px;
        font-size: 14px;
    }
    
    .modal-footer {
        padding: 14px 20px 20px;
    }
    
    .modal-btn {
        padding: 12px 32px;
        font-size: 16px;
    }
}

body.white-theme .form-page {
    background: linear-gradient(180deg, #E8F7FF 0%, #F0F9FF 100%);
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(95, 214, 199, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(95, 214, 199, 0.1) 0%, transparent 50%);
}

body.dark-theme .form-page .page-title {
    color: #FFFFFF !important;
}

body.dark-theme .form-page .page-subtitle {
    color: #9CA3AF !important;
}

body.dark-theme .form-page .status-section * {
    color: #2F2F2F !important;
}

body.dark-theme .form-page .status-section h3 {
    color: #2F2F2F !important;
}

body.dark-theme .form-page .status-search-type {
    color: #2F2F2F !important;
}

body.dark-theme .form-page .status-form input {
    color: #2F2F2F !important;
}


