.maxx-admin-wrap {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 20px;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.maxx-admin-header {
    border-bottom: 1px solid #eee;
    margin: -20px -20px 20px -20px;
    padding: 20px;
    background: linear-gradient(135deg, #2271b1 0%, #135e96 100%);
    border-radius: 8px 8px 0 0;
    color: white;
}
.maxx-admin-header h1 {
    margin: 0;
    color: #fff;
    font-size: 23px;
    font-weight: 400;
    line-height: 1.3;
}
.maxx-admin-header-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.maxx-plugin-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.maxx-plugin-info {
    flex: 1;
    min-width: 300px;
}
.maxx-plugin-title {
    margin: 0 0 8px 0;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.maxx-plugin-description {
    margin: 0 0 15px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.5;
    max-width: 800px;
}
.maxx-plugin-meta {
    display: flex;
    gap: 15px;
}
.maxx-plugin-version {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}
.maxx-plugin-author {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
}
.maxx-plugin-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.maxx-plugin-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.maxx-plugin-action-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}
.maxx-plugin-action-btn .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}
.maxx-admin-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 4px;
}
.maxx-admin-section h2 {
    margin-top: 0;
    color: #1d2327;
    font-size: 18px;
    font-weight: 600;
}
.maxx-form-table {
    width: 100%;
    margin: 0;
}
.maxx-form-table th {
    width: 200px;
    padding: 15px 10px 15px 0;
    font-weight: 600;
    color: #1d2327;
    vertical-align: top;
}
.maxx-form-table td {
    padding: 15px 10px;
    vertical-align: top;
}
.maxx-form-table input[type="text"],
.maxx-form-table input[type="number"],
.maxx-form-table select {
    width: 300px;
    padding: 8px 12px;
    border: 1px solid #8c8f94;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
}
.maxx-form-table input[type="checkbox"] {
    margin-top: 2px;
}
.maxx-form-table .description {
    margin-top: 5px;
    color: #646970;
    font-size: 13px;
    font-style: italic;
}
.maxx-submit-btn {
    background: #2271b1;
    border-color: #2271b1;
    color: #fff;
    text-decoration: none;
    text-shadow: none;
    padding: 6px 12px;
    border-width: 1px;
    border-style: solid;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
    transition: all 0.2s ease;
}
.maxx-submit-btn:hover {
    background: #135e96;
    border-color: #135e96;
    color: #fff;
}
.maxx-card {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
    margin-bottom: 20px;
}
.maxx-card-header {
    border-bottom: 1px solid #ccd0d4;
    padding: 15px 20px;
    font-weight: 600;
}
.maxx-card-body {
    padding: 20px;
}
.maxx-two-column {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.maxx-main-column {
    flex: 1;
    min-width: 300px;
}
.maxx-sidebar-column {
    flex: 1;
    min-width: 300px;
}
.maxx-schema-preview {
    background: #f8f9fa;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 15px;
    font-family: monospace;
    font-size: 12px;
    line-height: 1.4;
    max-height: 500px;
    overflow: auto;
    white-space: pre;
}
.maxx-schema-preview-title {
    margin-top: 0;
    margin-bottom: 10px;
    color: #1d2327;
    font-size: 16px;
    font-weight: 600;
}
.maxx-preview-loading {
    text-align: center;
    padding: 20px;
    color: #646970;
}
.maxx-preview-error {
    text-align: center;
    padding: 20px;
    color: #d63638;
    background: #fcf0f1;
    border-radius: 4px;
    border: 1px solid #d63638;
}
.maxx-preview-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}
.maxx-copy-btn {
    background: #f6f7f7;
    border: 1px solid #2271b1;
    color: #2271b1;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s ease;
}
.maxx-copy-btn:hover {
    background: #2271b1;
    color: #fff;
}
.maxx-test-btn {
    background: #f6f7f7;
    border: 1px solid #2271b1;
    color: #2271b1;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.maxx-test-btn:hover {
    background: #2271b1;
    color: #fff;
}
.maxx-copy-success {
    color: #008a20;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}
@media (max-width: 768px) {
    .maxx-two-column {
        flex-direction: column;
    }
    .maxx-sidebar-column {
        flex: 1;
    }
    .maxx-admin-header-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .maxx-plugin-info {
        min-width: unset;
    }
    .maxx-plugin-meta {
        justify-content: center;
    }
    .maxx-plugin-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .maxx-admin-header {
        padding: 15px;
        margin: -15px -15px 15px -15px;
    }
    .maxx-plugin-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    .maxx-plugin-title {
        font-size: 24px;
    }
    .maxx-plugin-description {
        font-size: 14px;
    }
    .maxx-plugin-action-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}