/* free-webmaster-tools.ro - Design Premium Flash-Lite */

:root {
    /* Albastrul principal "frumos" pentru tot site-ul */
    --primary-blue: #0ea5e9; 
    --primary-blue-hover: #0284c7;
}

/* Stilizare tabel pentru sistemul de semaforizare */
.status-pill {
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

/* Efecte de hover pe rândurile tabelului */
tr.row-hover:hover {
    background-color: #f8fafc;
    transition: background-color 0.2s ease;
}

/* Scrollbar personalizat pentru tabel/iframe */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* Efect de "sticlă" (glassmorphism) pentru cardurile de rezultat */
.glass-effect {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ---- NOI CLASE ADAUGATE PENTRU CULORI VII ȘI BUTOANE ---- */

/* Text global albastru (înlocuiește albastrul urât) */
.text-global-blue {
    color: var(--primary-blue) !important;
}

/* Buton global albastru */
.btn-global-blue {
    background-color: var(--primary-blue) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px 0 rgba(14, 165, 233, 0.39) !important;
    transition: all 0.3s ease !important;
    border: none !important;
}
.btn-global-blue:hover {
    background-color: var(--primary-blue-hover) !important;
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.23) !important;
    transform: translateY(-2px);
}

/* Carduri culori vii, scris alb, umbră gri */
.card-vivid {
    color: #ffffff !important;
    box-shadow: 0 10px 25px -5px rgba(156, 163, 175, 0.6) !important; /* Umbră gri curată */
    border: none !important;
    border-radius: 1rem;
    transition: all 0.3s ease;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card-vivid:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(156, 163, 175, 0.8) !important;
}

/* Suprascriere culori text în interiorul cardului */
.card-vivid h3 {
    color: #ffffff !important;
}
.card-vivid p {
    color: rgba(255, 255, 255, 0.95) !important;
}
.card-vivid .card-link {
    color: #ffffff !important;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    text-decoration: none;
}
.card-vivid .card-link:hover {
    color: #f0f9ff !important;
}
.card-vivid .icon-wrapper {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* Variante de culori vii, atractive și deschise pentru carduri */
.bg-vivid-sky { background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%); }
.bg-vivid-emerald { background: linear-gradient(135deg, #34d399 0%, #10b981 100%); }
.bg-vivid-purple { background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%); }
.bg-vivid-orange { background: linear-gradient(135deg, #fb923c 0%, #f97316 100%); }
.bg-vivid-red { background: linear-gradient(135deg, #f87171 0%, #ef4444 100%); }
.bg-vivid-indigo { background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%); }