/* Main container */
.wrap.loyae {
    background: linear-gradient(135deg, #ffffff, #fefefe) !important;
    padding: 2.5em !important;
    border-radius: 20px !important;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(240, 128, 128, 0.1) !important;
    position: relative;
    overflow: hidden;
}

.wrap.loyae::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f08080, #e74c3c, #f39c12, #2ecc71, #3498db);
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Links styling */
.loyae a:not(.button) {
    color: #f08080 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.loyae a:not(.button)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f08080, #e74c3c);
    transition: width 0.3s ease;
}

.loyae a:not(.button):hover {
    color: #e74c3c !important;
    text-decoration: none !important;
}

.loyae a:not(.button):hover::after {
    width: 100%;
}

/* Primary buttons */
.loyae .button-primary {
    background: linear-gradient(135deg, #f08080, #ff9494) !important;
    border: none !important;
    border-radius: 16px !important;
    padding: 1em 2em !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-size: 0.9em !important;
    box-shadow: 
        0 6px 20px rgba(240, 128, 128, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.loyae .button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.loyae .button-primary:hover {
    background: linear-gradient(135deg, #dc5f5f, #eb9292) !important;
    transform: translateY(-3px) !important;
    box-shadow: 
        0 10px 30px rgba(240, 128, 128, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.loyae .button-primary:hover::before {
    left: 100%;
}

.loyae .button-primary:active {
    transform: translateY(-1px) !important;
}

.loyae .button-primary:focus {
    box-shadow: 
        0 0 0 3px rgba(240, 128, 128, 0.3),
        0 6px 20px rgba(240, 128, 128, 0.3) !important;
    outline: none !important;
}

/* Secondary buttons */
.loyae .button-secondary {
    background: transparent !important;
    color: #f08080 !important;
    border: 2px solid #f08080 !important;
    border-radius: 16px !important;
    padding: 1em 2em !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-size: 0.9em !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.loyae .button-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #f08080, #ff9494);
    transition: width 0.3s ease;
    z-index: -1;
}

.loyae .button-secondary:hover {
    color: white !important;
    border-color: #dc5f5f !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(240, 128, 128, 0.3) !important;
}

.loyae .button-secondary:hover::before {
    width: 100%;
}

.loyae .button-secondary:focus {
    box-shadow: 0 0 0 3px rgba(240, 128, 128, 0.3) !important;
    outline: none !important;
}

/* Input fields */
.loyae input[type="text"] {
    border-radius: 16px !important;
    border: 2px solid #e9ecef !important;
    padding: 1em 1.5em !important;
    font-size: 1em !important;
    transition: all 0.3s ease !important;
    background: linear-gradient(135deg, #ffffff, #fafafa) !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06) !important;
}

.loyae input[type="text"]:hover {
    border-color: rgba(240, 128, 128, 0.5) !important;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.06),
        0 0 0 3px rgba(240, 128, 128, 0.1) !important;
}

.loyae input[type="text"]:focus {
    border-color: #f08080 !important;
    box-shadow: 
        0 0 0 3px rgba(240, 128, 128, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.06) !important;
    outline: none !important;
}

/* Header section */
#loyae-analyzer-header {
    background: linear-gradient(135deg, rgba(240, 128, 128, 0.08), rgba(231, 76, 60, 0.05));
    padding: 1.5em 2em;
    border-radius: 16px;
    margin-bottom: 2em;
    border: 1px solid rgba(240, 128, 128, 0.15);
    text-align: center;
}

#loyae-analyzer-header p {
    margin: 0;
    font-size: 1.2em;
    font-weight: 500;
    color: #2c3e50;
}

/* Analyze container */
#loyae-analyze-container {
    display: flex;
    gap: 1em;
    margin-bottom: 2em;
    padding: 2em;
    background: linear-gradient(135deg, rgba(240, 128, 128, 0.03), rgba(240, 128, 128, 0.01));
    border-radius: 20px;
    border: 1px solid rgba(240, 128, 128, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    align-items: stretch;
    flex-wrap: wrap;
}

#loyae-analyze-container input[type="text"] {
    flex: 1;
    min-width: 300px;
}

/* Cached section */
#loyae-metabox-cached-section {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.08), rgba(41, 128, 185, 0.05));
    padding: 1.5em 2em;
    border-radius: 16px;
    border: 2px solid rgba(52, 152, 219, 0.2);
    margin-bottom: 2em;
    position: relative;
    overflow: hidden;
}

#loyae-metabox-cached-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #3498db, #2980b9);
}

#loyae-metabox-cached-section h4 {
    margin: 0 0 1em 0;
    color: #2c3e50;
    font-size: 1.3em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1em;
}

.loyae-cached-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1em;
}

.loyae-cached-date {
    color: #7f8c8d;
    font-weight: 500;
}

/* Settings page */
.config-page #loyae_unlink_button,
.config-page #loyae_link_button {
    margin-left: 15px !important;
}

.config-page #loyae_link_status,
.config-page #loyae_unlink_status {
    margin-left: 15px !important;
    display: inline-block !important;
    vertical-align: middle !important;
    font-weight: 500 !important;
    padding: 0.5em 1em !important;
    border-radius: 8px !important;
    background: rgba(240, 128, 128, 0.1) !important;
    color: #2c3e50 !important;
}

.config-page .loyae-onboarding {
    margin: 2em 0 !important;
    padding: 2em !important;
    background: linear-gradient(135deg, #fafafa, #f8f9fa) !important;
    border-left: 6px solid #f08080 !important;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 3px 10px rgba(0, 0, 0, 0.04) !important;
    border-radius: 16px !important;
    position: relative !important;
}

.config-page .loyae-onboarding::before {
    content: '💡';
    position: absolute;
    top: 1em;
    right: 1.5em;
    font-size: 1.5em;
    opacity: 0.7;
}

.config-page .loyae-onboarding ol {
    margin-left: 1.5em !important;
    padding-left: 0 !important;
}

.config-page .loyae-onboarding li {
    margin-bottom: 0.8em !important;
    padding-left: 0.5em !important;
    line-height: 1.6 !important;
}

/* Dashboard page */
.dashboard-page .loyae-credits-box {
    padding: 2.5em !important;
    background: linear-gradient(135deg, rgba(240, 128, 128, 0.08), rgba(231, 76, 60, 0.05)) !important;
    border-radius: 20px !important;
    max-width: 450px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1em !important;
    box-shadow: 
        0 15px 35px rgba(240, 128, 128, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.08) !important;
    border: 2px solid rgba(240, 128, 128, 0.15) !important;
    position: relative !important;
    overflow: hidden !important;
}

.dashboard-page .loyae-credits-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(240, 128, 128, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.dashboard-page .loyae-credits-title {
    margin: 0 !important;
    color: #2c3e50 !important;
    font-weight: 600 !important;
    font-size: 1.3em !important;
    position: relative !important;
    z-index: 1 !important;
}

.dashboard-page .loyae-credits-count {
    font-size: 3.5em !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #f08080, #ff9494) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin: 0 !important;
    text-shadow: 0 4px 8px rgba(240, 128, 128, 0.3) !important;
    position: relative !important;
    z-index: 1 !important;
}

.dashboard-page .loyae-credits-actions {
    display: flex !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Credits display */
#loyae-credits {
    color: #f08080;
    font-weight: 700;
    font-size: 1.3em;
    text-shadow: 0 2px 4px rgba(240, 128, 128, 0.2);
    background: linear-gradient(135deg, #f08080, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Indicators */
.loyae-cached-info,
.loyae-fresh-info {
    margin-bottom: 1.5em !important;
    padding: 1.2em 1.5em !important;
    border-radius: 16px !important;
    border: 2px solid !important;
    position: relative !important;
    overflow: hidden !important;
}

.loyae-cached-info {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.08), rgba(41, 128, 185, 0.05)) !important;
    border-color: rgba(52, 152, 219, 0.3) !important;
}

.loyae-fresh-info {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.08), rgba(39, 174, 96, 0.05)) !important;
    border-color: rgba(46, 204, 113, 0.3) !important;
}

.loyae-cached-indicator,
.loyae-fresh-indicator {
    background: linear-gradient(135deg, #3498db, #2980b9) !important;
    color: white !important;
    padding: 0.4em 1em !important;
    border-radius: 20px !important;
    font-size: 0.75em !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    display: inline-block !important;
    box-shadow: 0 3px 8px rgba(52, 152, 219, 0.3) !important;
}

.loyae-fresh-indicator {
    background: linear-gradient(135deg, #2ecc71, #27ae60) !important;
    box-shadow: 0 3px 8px rgba(46, 204, 113, 0.3) !important;
}

.loyae-recent-badge {
    background: linear-gradient(135deg, #2ecc71, #27ae60) !important;
    color: white !important;
    padding: 0.3em 0.8em !important;
    border-radius: 15px !important;
    font-size: 0.7em !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 2px 6px rgba(46, 204, 113, 0.3) !important;
}

.loyae-old-badge {
    background: linear-gradient(135deg, #f39c12, #e67e22) !important;
    color: white !important;
    padding: 0.3em 0.8em !important;
    border-radius: 15px !important;
    font-size: 0.7em !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 2px 6px rgba(243, 156, 18, 0.3) !important;
}

/* Responsive design */
@media (max-width: 768px) {
    .wrap.loyae {
        padding: 1.5em !important;
        margin: 1em !important;
    }
    
    #loyae-analyze-container {
        flex-direction: column;
        padding: 1.5em;
    }
    
    #loyae-analyze-container input[type="text"] {
        min-width: unset;
        margin-bottom: 1em;
    }
    
    .loyae-cached-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .dashboard-page .loyae-credits-box {
        margin: 1em !important;
        padding: 2em !important;
    }
    
    .dashboard-page .loyae-credits-count {
        font-size: 2.5em !important;
    }
    
    .analysis-results {
        padding: 1.5em;
        gap: 1em;
    }
    
    .analysis-results table td {
        padding: 0.8em;
        font-size: 0.9em;
    }
}

/* Credits display */
#loyae-credits {
    color: #f08080;
    font-weight: 600;
    font-size: 1.1em;
    text-shadow: 0 1px 2px rgba(240, 128, 128, 0.1);
}

/* Main response container */
#loyae-analyze-response {
    margin-top: 1.5em;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

/* Status messages */
#loyae-analyze-response .analyzing {
    padding: 1em 1.5em;
    color: #ffd64f;
    background: linear-gradient(135deg, rgba(255, 214, 79, 0.1), rgba(255, 214, 79, 0.05));
    border: 2px solid #ffd64f;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(255, 214, 79, 0.15);
    font-weight: 500;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

#loyae-analyze-response .error {
    padding: 1em 1.5em;
    color: #d32f2f;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.1), rgba(211, 47, 47, 0.05));
    border: 2px solid #d32f2f;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.15);
    font-weight: 500;
}

/* Analysis results container */
.analysis-results {
    padding: 2em;
    background: linear-gradient(135deg, rgba(240, 128, 128, 0.05), rgba(240, 128, 128, 0.02));
    border: 2px solid rgba(240, 128, 128, 0.3);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    box-shadow: 0 10px 30px rgba(240, 128, 128, 0.1);
    transition: all 0.3s ease;
}

.analysis-results:hover {
    box-shadow: 0 15px 40px rgba(240, 128, 128, 0.15);
    transform: translateY(-2px);
}

.analysis-results h3 {
    font-size: 1.6em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5em;
    background: linear-gradient(135deg, #f08080, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Tables styling */
.analysis-results table {
    table-layout: fixed;
    border-spacing: 0;
    background: white;
    border: 2px solid rgba(240, 128, 128, 0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.analysis-results table:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.analysis-results table th {
    background: linear-gradient(135deg, #f08080, #ff9494);
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 1em;
    font-size: 1.1em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.analysis-results table th[colspan="2"],
.analysis-results table th[colspan="3"] {
    padding: 1.2em;
    font-size: 1.2em;
}

.analysis-results table td {
    font-size: 0.95em;
    padding: 1em 1.2em;
    border-bottom: 1px solid rgba(240, 128, 128, 0.1);
    transition: background-color 0.2s ease;
    vertical-align: middle;
}

.analysis-results table tr:hover td {
    background-color: rgba(240, 128, 128, 0.05);
}

.analysis-results table td img {
    width: 100%;
    height: auto;
    max-width: 200px;
    max-height: 200px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.analysis-results table td img:hover {
    transform: scale(1.05);
}

.analysis-results table tr:last-child td {
    border-bottom: none;
}

/* Status indicators */
span.available {
    color: #27ae60;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
}

span.available::before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
}

span.not-available {
    color: #e74c3c;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
}

span.not-available::before {
    content: "✗";
    color: #e74c3c;
    font-weight: bold;
}

/* Sitemaps table styling */
.sitemaps-table > tbody > tr > td {
    padding: 1.5em;
    vertical-align: top;
}

.child-sitemaps {
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin-top: 1em;
}

.child-sitemaps > ul {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    padding: 0;
    margin: 0;
}

.child-sitemaps > ul > li {
    display: flex;
    flex-direction: column;
    gap: 1em;
    background: linear-gradient(135deg, rgba(240, 128, 128, 0.03), rgba(240, 128, 128, 0.01));
    border: 2px solid rgba(240, 128, 128, 0.2);
    border-radius: 16px;
    padding: 1.5em;
    list-style: none;
    transition: all 0.3s ease;
}

.child-sitemaps > ul > li:hover {
    box-shadow: 0 8px 20px rgba(240, 128, 128, 0.1);
    transform: translateY(-1px);
}

.child-sitemaps > ul > li > .child-sitemap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1em;
}

.child-sitemaps > ul > li > .child-sitemap-header a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: color 0.3s ease;
}

.child-sitemaps > ul > li > .child-sitemap-header a:hover {
    color: #f08080;
}

.child-sitemaps > ul > li > .sitemap-pages-list {
    display: flex;
    flex-direction: column;
    gap: 0.8em;
}

.child-sitemaps > ul > li > .sitemap-pages-list h4,
.child-sitemaps > ul > li > .sitemap-pages-list h5 {
    margin: 0;
    color: #34495e;
    font-weight: 600;
}

.child-sitemaps > ul > li > .sitemap-pages-list > ul {
    max-height: 400px;
    overflow-y: auto;
    padding: 1em;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(240, 128, 128, 0.1);
}

.child-sitemaps > ul > li > .sitemap-pages-list > ul::-webkit-scrollbar {
    width: 8px;
}

.child-sitemaps > ul > li > .sitemap-pages-list > ul::-webkit-scrollbar-track {
    background: rgba(240, 128, 128, 0.1);
    border-radius: 4px;
}

.child-sitemaps > ul > li > .sitemap-pages-list > ul::-webkit-scrollbar-thumb {
    background: rgba(240, 128, 128, 0.3);
    border-radius: 4px;
}

.child-sitemaps > ul > li > .sitemap-pages-list > ul::-webkit-scrollbar-thumb:hover {
    background: rgba(240, 128, 128, 0.5);
}

.child-sitemaps > ul > li > .sitemap-pages-list > ul > li {
    list-style: none;
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.5em;
}

.child-sitemaps > ul > li > .sitemap-pages-list > ul > li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #f08080;
    font-weight: bold;
}

.child-sitemaps > ul > li > .sitemap-pages-list > ul > li a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9em;
}

.child-sitemaps > ul > li > .sitemap-pages-list > ul > li a:hover {
    color: #f08080;
    text-decoration: underline;
}

/* Buttons styling */
.button {
    background: linear-gradient(135deg, #f08080, #e74c3c);
    color: white;
    border: none;
    padding: 0.8em 1.5em;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(240, 128, 128, 0.3);
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 0.5px;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 128, 128, 0.4);
}

.button:active {
    transform: translateY(0);
}

.button.button-secondary {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    box-shadow: 0 4px 12px rgba(149, 165, 166, 0.3);
}

.button.button-secondary:hover {
    box-shadow: 0 6px 20px rgba(149, 165, 166, 0.4);
}

/* Meta tags tables */
.meta-tags-table {
    margin-bottom: 1.5em;
}

/* Bulk actions */
.bulk-meta-actions {
    display: flex;
    gap: 1em;
    margin-top: 1em;
    flex-wrap: wrap;
}

/* Generation results */
.generation-result td {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(39, 174, 96, 0.05));
    border-left: 4px solid #2ecc71;
}

.generation-result .result-container {
    padding: 1em;
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.generation-result .result-container strong {
    color: #27ae60;
    display: block;
    margin-bottom: 0.5em;
}

/* Cached/Fresh indicators */
.loyae-cached-info,
.loyae-fresh-info {
    display: flex;
    align-items: center;
    gap: 1em;
    padding: 1em;
    border-radius: 12px;
    margin-bottom: 1em;
    flex-wrap: wrap;
}

.loyae-cached-info {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.05));
    border: 2px solid rgba(52, 152, 219, 0.3);
}

.loyae-fresh-info {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(39, 174, 96, 0.05));
    border: 2px solid rgba(46, 204, 113, 0.3);
}

.loyae-cached-indicator,
.loyae-fresh-indicator {
    background: #3498db;
    color: white;
    padding: 0.3em 0.8em;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.loyae-fresh-indicator {
    background: #2ecc71;
}

.loyae-recent-badge {
    background: #f39c12;
    color: white;
    padding: 0.2em 0.6em;
    border-radius: 15px;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
}

.loyae-old-badge {
    background: #e74c3c;
    color: white;
    padding: 0.2em 0.6em;
    border-radius: 15px;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
}

/* Responsive design */
@media (max-width: 768px) {
    .analysis-results {
        padding: 1.5em;
        gap: 1em;
    }
    
    .analysis-results table td {
        padding: 0.8em;
        font-size: 0.9em;
    }
    
    .child-sitemaps > ul > li > .child-sitemap-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .bulk-meta-actions {
        flex-direction: column;
    }
    
    .loyae-cached-info,
    .loyae-fresh-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5em;
    }
}