.aqct-wrap {
    max-width: 1400px;
    margin: 20px 0;
}
.aqct-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.fix-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.fix-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.fix-icon {
    font-size: 48px;
    text-align: center;
    padding: 30px;
    margin-bottom: 15px;
}
.fix-card h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #23282d;
}
.fix-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 60px;
}
.fix-card .button {
    width: 100%;
    justify-content: center;
    height: 40px;
    font-size: 14px;
}
.fix-card.running {
    opacity: 0.6;
    pointer-events: none;
}
.fix-card.running .button {
    background: #f0f0f0;
    color: #666;
}
.fix-result {
    margin-top: 15px;
    padding: 12px;
    border-radius: 4px;
    font-size: 13px;
    display: none;
}
.fix-result.show {
    display: block;
}
.fix-result.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}
.fix-result.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}
.fix-result .count {
    font-weight: bold;
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}
.fix-result .details {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.1);
    font-size: 12px;
}
.fix-result .details ul {
    margin: 5px 0;
    padding-left: 20px;
}
.fix-result .details li {
    margin: 3px 0;
}
.aqct-footer {
    margin-top: 40px;
    padding: 20px;
    background: #fff3cd;
    border: 1px solid #ff6e07;
    border-radius: 4px;
}
.aqct-footer p {
    margin: 0;
    color: #856404;
}
/* Loading Spinner */
.fix-card .button.loading::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 8px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.6s linear infinite;
    vertical-align: middle;
}
@keyframes spinner {
    to { transform: rotate(360deg); }
}
/* Responsive */
@media (max-width: 782px) {
 .aqct-grid {
    grid-template-columns: 1fr;
 }
}