.atf-container {
            max-width: 900px;
            margin: 30px auto;
            padding: 20px;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }
        
        .atf-search-box {
            background:#054076;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(5, 64, 118, 0.30);
            color: white;
        }

        .atf-brand {
            text-align: center;
            margin-bottom: 18px;
        }

        .atf-logo {
            width: 84px;
            height: auto;
            display: inline-block;
            background: rgba(255,255,255,0.92);
            border-radius: 14px;
            padding: 8px 10px;
            box-shadow: 0 6px 16px rgba(0,0,0,0.25);
        }

        .atf-results-brand {
            text-align: center;
            margin-bottom: 14px;
        }

        .atf-logo-small {
            width: 68px;
            padding: 6px 8px;
            border-radius: 12px;
        }
        
        .atf-search-box h3 {
            margin-top: 0;
            font-size: 28px;
            font-weight: 700;
            line-height: 1.3;
            color: white;
        }
        
        .atf-helper-text {
            font-size: 16px;
            opacity: 0.95;
            margin-bottom: 20px;
            line-height: 1.5;
            color: white;
        }
        
        #atf-description {
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-family: inherit;
            resize: vertical;
            box-sizing: border-box;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        
        #atf-description:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(255,255,255,0.4);
        }
        
        .atf-btn-primary {
            background: #03BDC6;
            color: #ffffff;
            padding: 15px 40px;
            border: none;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            margin-top: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(3, 189, 198, 0.4);
        }
        
        .atf-btn-primary:hover {
            background: #02a8b0;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(3, 189, 198, 0.6);
        }
        
        .atf-loading {
            text-align: center;
            padding: 50px;
            background: white;
            color: #111827;
            border-radius: 16px;
            margin-top: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .atf-spinner {
            border: 5px solid #f3f3f3;
            border-top: 5px solid #054076;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .atf-results {
            margin-top: 30px;
        }
        
        .atf-question {
            text-align: center;
            background: #f8f9fa;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 20px;
        }
        
        .atf-question h3 {
            margin: 0;
            font-size: 24px;
            color: #333;
        }
        
        .atf-tool-card {
            background: #ffffff;
            color: #111827;
            padding: 28px;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .atf-section {
            margin-top: 18px;
        }

        .atf-section-title {
            margin: 0 0 10px 0;
            font-size: 18px;
            font-weight: 800;
            color: #054076;
            letter-spacing: 0.2px;
        }

        .atf-offer-grid {
            display: grid;
            /* Responsive cards that never become unreadably narrow */
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 12px;
            align-items: stretch;
            width: 100%;
        }

        @media (max-width: 900px) {
            .atf-offer-grid { grid-template-columns: 1fr; }
        }

        /* Secondary sections live inside a 2-column row. Force stacked cards inside each half for readability. */
        .atf-secondary-row .atf-offer-grid { grid-template-columns: 1fr; }

        .atf-offer-card {
            background: #ffffff;
            border: 1px solid rgba(5, 64, 118, 0.15);
            border-radius: 14px;
            padding: 14px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 290px;
        }

        .atf-offer-card h5 {
            margin: 0 0 6px 0;
            font-size: 16px;
            font-weight: 800;
            color: #131921;
        }

        .atf-offer-meta {
            font-size: 13px;
            color: rgba(19, 25, 33, 0.75);
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .atf-btn-mini {
            display: inline-block;
            background: #FF9900;
            color: #131921;
            padding: 10px 14px;
            border-radius: 10px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 800;
        }

        .atf-btn-mini:hover { background: #f59b14; color: #131921; }
@media (max-width: 768px) {
            .atf-tool-card {
                flex-direction: column;
            }
        }
        
        .atf-image-container {
            flex-shrink: 0;
        }
        
        #atf-tool-image {
            max-width: 280px;
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .atf-tool-details {
            flex: 1;
            text-align: center;
        }
        
        #atf-tool-name {
            font-size: 26px;
            color: #131921;
            margin: 0 0 15px 0;
            font-weight: 700;
            line-height: 1.2;
        }

        /* Keep the primary card compact */
        .atf-tool-details .atf-benefits {
            font-size: 14px;
            line-height: 1.5;
        }
        
        .atf-price {
            font-size: 28px;
            color: #B12704;
            font-weight: 700;
            margin: 15px 0;
        }
        
        .atf-btn-amazon {
            display: inline-block;
            background: #FF9900;
            color: #131921;
            padding: 18px 50px;
            border-radius: 10px;
            text-decoration: none;
            font-size: 20px;
            font-weight: 700;
            margin-top: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
        }

/* Primary card: keep the CTA button below the benefits list (prevents it from sitting beside bullets) */
.atf-tool-details #atf-amazon-link {
    display: block;
    width: fit-content;
    margin: 18px auto 0;
}

.atf-offer-img {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 6px 0 10px;
}

.atf-offer-img img {
    max-width: 120px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
    background: rgba(255,255,255,0.08);
    padding: 6px;
}

.atf-tool-details .atf-benefits {
    margin: 12px auto 0;
}

/* Short general "what to look for" description (no product claims) */
.atf-desc {
    margin: 10px 0 0;
    color: #333;
    font-size: 15px;
    line-height: 1.5;
}
        
        .atf-btn-amazon:hover {
            background: #f59b14;
            transform: scale(1.05);
            box-shadow: 0 6px 25px rgba(255, 153, 0, 0.5);
            color: #131921;
        }
        
        .atf-affiliate-note {
            margin-top: 15px;
            color: #666;
            font-style: italic;
        }

        .atf-offer-card {
            background: #ffffff;
            border-radius: 14px;
            border: 1px solid rgba(5, 64, 118, 0.12);
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
            padding: 16px;
            text-align: left;
        }

        .atf-offer-card h5 {
            margin: 0 0 10px 0;
            font-size: 16px;
            color: #131921;
        }

        .atf-offer-badge {
            display: inline-block;
            font-size: 12px;
            font-weight: 800;
            background: rgba(3, 189, 198, 0.14);
            color: #054076;
            padding: 6px 8px;
            border-radius: 999px;
            margin-bottom: 10px;
        }

        .atf-offer-card a {
            display: inline-block;
            margin-top: 10px;
            text-decoration: none;
            font-weight: 800;
            color: #054076;
        }

        .atf-offer-card a:hover {
            color: #02a8b0;
        }

        .atf-offer-aff {
            margin-top: 10px;
            color: rgba(19,25,33,0.7);
            font-style: italic;
            font-size: 12px;
        }
.atf-turnstile-wrap {
            margin-top: 16px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.2);
            padding: 14px;
            border-radius: 14px;
        }

        .atf-turnstile-text {
            margin: 0 0 10px 0;
        }

        
        .atf-retry-section {
            text-align: center;
            margin: 30px 0;
        }
        
        .atf-btn-retry {
            background: #6c757d;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .atf-btn-retry:hover {
            background: #5a6268;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
        }

        .atf-btn-secondary {
            background: transparent;
            color: #054076;
            padding: 12px 30px;
            border: 2px solid rgba(5, 64, 118, 0.35);
            border-radius: 10px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-left: 12px;
        }

        .atf-btn-secondary:hover {
            border-color: rgba(5, 64, 118, 0.6);
            transform: translateY(-1px);
        }

        .atf-btn-tertiary {
            background: #054076;
            color: #ffffff;
            padding: 12px 24px;
            border: 1px solid rgba(5, 64, 118, 0.35);
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .atf-btn-tertiary:hover {
            background: #043561;
            border-color: rgba(5, 64, 118, 0.6);
            transform: translateY(-1px);
        }

        .atf-refine-panel {
            margin-top: 16px;
            background: rgba(5, 64, 118, 0.08);
            border: 1px solid rgba(5, 64, 118, 0.18);
            border-radius: 14px;
            padding: 18px;
        }

        .atf-refine-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }

        .atf-field label {
            display: block;
            font-size: 13px;
            font-weight: 700;
            color: rgba(5, 64, 118, 0.9);
            margin-bottom: 6px;
        }

        .atf-field select,
        .atf-field input {
            width: 100%;
            padding: 12px 12px;
            border-radius: 10px;
            border: 1px solid rgba(5, 64, 118, 0.25);
            background: #ffffff;
            font-size: 15px;
        }

        .atf-field-wide {
            grid-column: 1 / -1;
        }

        .atf-refine-actions {
            margin-top: 14px;
            display: flex;
            gap: 12px;
            justify-content: center;
        }

        @media (max-width: 700px) {
            .atf-refine-grid {
                grid-template-columns: 1fr;
            }
            .atf-btn-secondary {
                margin-left: 0;
                margin-top: 10px;
            }
            .atf-offer-grid {
                grid-template-columns: 1fr;
            }
        }

        
        .atf-articles {
            margin-top: 36px;
            background: #eef4fb;
            padding: 24px 28px;
            border-radius: 14px;
            border: 1px solid #c8ddf0;
        }
        
        .atf-articles h4 {
            font-size: 15px;
            font-weight: 700;
            color: #1a3a5c;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-top: 0;
            margin-bottom: 14px;
            padding-bottom: 10px;
            border-bottom: 2px solid #c8ddf0;
        }
        
        .atf-article-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .atf-article-item {
            background: #ffffff;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid #c8ddf0;
            border-left: 4px solid #1a3a5c;
            box-shadow: 0 1px 4px rgba(26,58,92,0.07);
            transition: all 0.2s ease;
        }
        
        .atf-article-item:hover {
            transform: translateX(5px);
            border-left-color: #e8a020;
            box-shadow: 0 3px 10px rgba(26,58,92,0.12);
            background: #f5f9ff;
        }
        
        .atf-article-item a {
            color: #1a3a5c;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            line-height: 1.4;
        }
        
        .atf-article-item a:hover {
            color: #e8a020;
        }
        
        .atf-error {
            background: #f8d7da;
            color: #721c24;
            padding: 20px;
            border-radius: 12px;
            margin-top: 30px;
            border-left: 5px solid #dc3545;
            font-size: 16px;
        }
    
        .atf-chip-wrap{
            display:flex;
            flex-wrap:wrap;
            gap:8px;
            justify-content:center;
            margin:10px 0 2px 0;
        }
        .atf-chip{
            border:1px solid rgba(255,255,255,0.25);
            background: rgba(255,255,255,0.08);
            color:#ffffff;
            font-size:12px;
            padding:6px 10px;
            border-radius:999px;
            cursor:pointer;
            transition: transform .06s ease, background .12s ease;
            max-width: 100%;
        }
        .atf-chip:hover{ background: rgba(255,255,255,0.14); }
        .atf-chip:active{ transform: translateY(1px); }

        /* Refine buttons: keep cancel same height/weight as search */
        #atf-refine-search.atf-btn-primary,
        #atf-refine-cancel.atf-btn-tertiary{
            padding: 12px 18px;
            line-height: 1;
            border-radius: 8px;
            min-height: 44px;
            display:inline-flex;
            align-items:center;
            justify-content:center;
        }

        .atf-admin-debug{
            margin: 10px auto 0 auto;
            max-width: 860px;
            background: rgba(0,0,0,0.08);
            border: 1px dashed rgba(0,0,0,0.25);
            padding: 10px 12px;
            border-radius: 10px;
            font-size: 12px;
        }
        .atf-admin-debug-lines div{ margin-top:4px; }


        /* ===== Modern two-tier results layout ===== */
        .atf-question-sub {
            margin: 8px 0 0 0;
            font-size: 14px;
            color: rgba(0,0,0,0.65);
        }

        .atf-tool-card {
            position: relative;
            border: 1px solid rgba(5, 64, 118, 0.10);
        }

        .atf-primary-top {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin-bottom: 10px;
        }

        .atf-primary-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.3px;
            text-transform: uppercase;
            color: #054076;
            background: rgba(5, 64, 118, 0.08);
            border: 1px solid rgba(5, 64, 118, 0.16);
            padding: 6px 10px;
            border-radius: 999px;
        }

        .atf-benefits {
            margin: 10px 0 14px 0;
            padding-left: 18px;
            color: rgba(0,0,0,0.72);
            font-size: 14px;
            line-height: 1.45;
        }

        /* Primary card: keep the overall content centered, but align bullets cleanly */
        .atf-tool-details .atf-benefits {
            display: inline-block;
            text-align: left;
            max-width: 560px;
        }

        .atf-secondary-row {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
            margin-top: 18px;
        }

/* "Other options" header spans full width above the two cards */
.atf-other-options {
    grid-column: 1 / -1;
    margin-bottom: -6px;
}

/* --- Simple modal for issue reporting --- */
.atf-modal { position: fixed; inset: 0; z-index: 999999; }
.atf-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.atf-modal-card {
  position: relative;
  max-width: 640px;
  width: calc(100% - 32px);
  margin: 7vh auto;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.3);
}
.atf-modal-close {
  position: absolute; right: 10px; top: 8px;
  border: none; background: transparent;
  font-size: 26px; line-height: 1; cursor: pointer;
  color: #333;
}
.atf-modal-sub { margin-top: 6px; color: #444; }
.atf-modal-meta { margin: 10px 0; color: #555; font-size: 13px; }
.atf-modal-label { display: block; font-weight: 600; margin: 10px 0 6px; }
.atf-modal-card textarea, .atf-modal-card input[type="email"] {
  width: 100%;
  border: 1px solid #d0d7de;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
}
.atf-modal-actions { display: flex; gap: 10px; margin-top: 12px; }
.atf-required { color: #b42318; font-weight: 600; }
.atf-optional { color: #6b7280; font-weight: 600; }
.atf-modal-note { margin-top: 10px; color: #6b7280; }
.atf-modal-status { margin-top: 10px; padding: 10px; border-radius: 10px; background: #f6f8fa; border: 1px solid #d0d7de; }

        @media (max-width: 900px) {
            .atf-secondary-row { grid-template-columns: 1fr; }
        }

        .atf-secondary-row .atf-section {
            margin-top: 0;
        }

        .atf-offer-card {
            position: relative;
            height: 100%;
        }

        .atf-offer-desc {
            margin: 6px 0 0;
            color: rgba(0,0,0,0.75);
            font-size: 13px;
            line-height: 1.45;
        }

        .atf-offer-bullets {
            margin: 8px 0 10px 0;
            padding-left: 18px;
            color: rgba(0,0,0,0.72);
            font-size: 13px;
            line-height: 1.45;
        }

/* Secondary cards: use a real button (higher CTR) + reduce dead space */
.atf-btn-amazon-small {
    display: inline-block;
    background: #FF9900;
    color: #131921;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    margin-top: 8px;
    box-shadow: 0 3px 12px rgba(255, 153, 0, 0.28);
    transition: all 0.25s ease;
}

.atf-offer-card a.atf-btn-amazon-small {
    color: #131921 !important;
    text-decoration: none;
}

.atf-btn-amazon-small:hover {
    background: #f59b14;
    transform: translateY(-1px);
    box-shadow: 0 5px 18px rgba(255, 153, 0, 0.38);
    color: #131921;
}

.atf-offer-aff {
    margin-top: 6px;
}

        .atf-offer-link {
            display: inline-block;
    margin-top: 0;
        }

        /* Subtle “high-tech” polish without breaking Kadence layout */
        .atf-results {
            background: linear-gradient(180deg, rgba(5, 64, 118, 0.04), rgba(255,255,255,1));
            border: 1px solid rgba(5, 64, 118, 0.10);
        }

        .atf-tool-card, .atf-offer-card {
            backdrop-filter: saturate(120%);
        }

        .atf-offer-badge {
            background: rgba(5, 64, 118, 0.08);
            border: 1px solid rgba(5, 64, 118, 0.16);
            color: #054076;
            font-weight: 800;
        }

.atf-primary-snippet{margin:8px 0 0 0;font-size:14px;opacity:.9}
.atf-confidence{margin:6px 0 0 0;font-size:13px;opacity:.85}


        /* Tool-themed loading animation (more lively + multiple tools) */
        .atf-loading-tools{
            display:flex;
            gap:10px;
            align-items:center;
            justify-content:center;
            margin: 10px 0 6px 0;
            font-size: 28px;
            line-height: 1;
        }
        .atf-loading-tools .atf-tool{ display:inline-block; transform-origin: 50% 80%; animation: atfBob 1.35s ease-in-out infinite; opacity: 0.95; }
        .atf-loading-tools .atf-tool:nth-child(2){ animation-delay: .12s; }
        .atf-loading-tools .atf-tool:nth-child(3){ animation-delay: .24s; }
        .atf-loading-tools .atf-tool:nth-child(4){ animation-delay: .36s; }
        .atf-loading-tools .atf-tool:nth-child(5){ animation-delay: .48s; }

        /* Give the hammer a tiny extra swing for fun */
        .atf-tool-hammer{ transform-origin: 70% 70%; }

        @keyframes atfBob{
            0%,100%{ transform: translateY(0) rotate(0deg) scale(1); opacity: 0.92; }
            50%{ transform: translateY(-6px) rotate(-3deg) scale(1.02); opacity: 1; }
        }

        .atf-loading-subtext{ margin: 6px 0 0 0; font-size: 13px; color: rgba(0,0,0,0.68); }
        .atf-loading-progress{ height: 8px; background: rgba(0,0,0,0.08); border-radius: 999px; overflow: hidden; margin: 14px 12px 6px; }
        .atf-loading-progress-bar{ height: 100%; width: 0%; background: rgba(5, 64, 118, 0.85); transition: width 250ms ease; }
        .atf-loading-tip{ margin: 8px 0 0 0; font-size: 12px; color: rgba(0,0,0,0.55); }

        @media (prefers-reduced-motion: reduce){
            .atf-loading-tools .atf-tool{ animation: none; }
            .atf-loading-progress-bar{ transition: none; }
        }

/* ===== AI Tool Finder Forge Loader ===== */
.atf-loading-sub{display:none;}
.atf-forge{position:relative;width:120px;height:70px;margin:0 auto 6px;}
.atf-anvil{position:absolute;left:20px;bottom:6px;width:80px;height:22px;border-radius:10px;background:rgba(255,255,255,.9);opacity:.95;}
.atf-anvil:before{content:"";position:absolute;left:14px;top:-10px;width:52px;height:14px;border-radius:10px;background:rgba(255,255,255,.75);}
.atf-hammer{position:absolute;right:8px;top:0;width:56px;height:12px;border-radius:8px;background:rgba(255,255,255,.95);transform-origin:10px 10px;animation:atfHammer 1.05s ease-in-out infinite;}
.atf-hammer:before{content:"";position:absolute;left:-10px;top:-2px;width:18px;height:16px;border-radius:6px;background:rgba(255,255,255,.75);}
@keyframes atfHammer{0%,100%{transform:rotate(18deg) translate(0,0);}50%{transform:rotate(-34deg) translate(-10px,10px);}}
.atf-spark{position:absolute;left:52px;bottom:26px;width:6px;height:6px;border-radius:2px;background:rgba(255,255,255,.92);opacity:0;animation:atfSpark 1.05s ease-out infinite;}
.atf-spark.s2{animation-delay:.08s;}
.atf-spark.s3{animation-delay:.16s;}
.atf-spark.s4{animation-delay:.24s;}
.atf-spark.s5{animation-delay:.32s;}
@keyframes atfSpark{0%{transform:translate(0,0) scale(.8);opacity:0;}45%{opacity:1;}100%{transform:translate(-22px,-18px) scale(.3);opacity:0;}}
@media (prefers-reduced-motion: reduce){.atf-hammer,.atf-spark{animation:none;}}

.atf-forge .atf-anvil{background:#334155 !important;opacity:1 !important;}
.atf-forge .atf-anvil:before{background:#475569 !important;}
.atf-forge .atf-hammer{background:#1f2937 !important;width:58px !important;}
.atf-forge .atf-hammer:before{background:#64748b !important;}
.atf-forge .atf-spark{background:#f59e0b !important;box-shadow:0 0 10px rgba(245,158,11,.65) !important;}

.atf-tool-card h3, .atf-tool-card p, .atf-tool-card li{color:#111827;}

/* ===== Forge Loader SVG ===== */
.ehf-forge-svg{width:140px;height:auto;display:block;margin:0 auto 8px;}
.ehf-forge-sparks{transform-origin:70px 46px;animation:ehfSparks 0.9s ease-in-out infinite;}
.ehf-forge-hammer{transform-origin:98px 14px;animation:ehfHammerSwing 0.9s ease-in-out infinite;}
@keyframes ehfHammerSwing{0%,100%{transform:rotate(18deg) translate(0,0);}50%{transform:rotate(-28deg) translate(-6px,10px);}}
@keyframes ehfSparks{0%,100%{opacity:.2;transform:scale(.9);}50%{opacity:1;transform:scale(1.05);}}
@media (prefers-reduced-motion: reduce){.ehf-forge-sparks,.ehf-forge-hammer{animation:none;}}


/* ===== Basic Professional Hammer Loader ===== */
.atf-loading{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:10px 0;
}
.atf-loading-tools{
    display:flex;
    align-items:center;
    justify-content:center;
    height:48px;
    margin-bottom:8px;
}
.atf-tool-hammer{
    font-size:36px;
    display:inline-block;
    transform-origin:75% 65%;
    animation:atfHammerStrike 1.1s ease-in-out infinite;
}
@keyframes atfHammerStrike{
    0%,100%{transform:rotate(18deg) translate(0,0);}
    50%{transform:rotate(-22deg) translate(-2px,6px);}
}
#atf-loading-text{
    margin:0;
    font-weight:600;
    text-align:center;
}

#atf-report-title{background:#054076;color:#fff;padding:12px 14px;border-radius:12px;margin:0 0 10px 0;}
