/* ============================================================
 *  Homepage – Techy Terminal UI  |  custom.css  v5
 *  Hover: translateX statt translateY → kein Clipping möglich
 *  Akzent: Teal-Grün (#38d9a9) auf dunklem Hintergrund
 *  ============================================================ */

/* ── Hintergrund ─────────────────────────────────────────── */
body,
#__next {
background: #0b0f14 !important;
}

/* ── Topbar / Widget-Leiste ──────────────────────────────── */
#information-widgets,
#widgets-wrap {
background: rgba(255, 255, 255, 0.03) !important;
border: 1px solid rgba(255, 255, 255, 0.07) !important;
border-radius: 8px !important;
padding: 6px 14px !important;
}

/* ── Kategorieüberschriften ──────────────────────────────── */
.text-theme-800 {
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.25em !important;
    text-transform: uppercase !important;
    color: #38d9a9 !important;
    text-shadow: none !important;
}

/* Linie rechts neben dem Label */
.border-theme-800,
.border-theme-300 {
    border-color: rgba(56, 217, 169, 0.25) !important;
}

/* ── Service-Karten ──────────────────────────────────────── */
:is(.dark .dark\:bg-white\/5),
.service-card {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-left: 2px solid rgba(56, 217, 169, 0.35) !important;
    border-radius: 0 10px 10px 0 !important;
    padding: 14px 14px 12px !important;
    transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-left-color 0.18s ease !important;
    /* Kein overflow:hidden nötig → kein Clipping */
    overflow: visible !important;
    position: relative !important;
}

/* Aktiver-Punkt oben rechts (Status-Indikator) */
:is(.dark .dark\:bg-white\/5)::after,
.service-card::after {
    content: '' !important;
    position: absolute !important;
    top: 13px !important;
    right: 12px !important;
    width: 5px !important;
    height: 5px !important;
    border-radius: 50% !important;
    background: #38d9a9 !important;
    box-shadow: 0 0 6px #38d9a9 !important;
    opacity: 0.7 !important;
}

/* ── Hover: nach rechts schieben — kein Clipping ─────────── */
:is(.dark .dark\:bg-white\/5):hover,
.service-card:hover {
    background: rgba(56, 217, 169, 0.06) !important;
    border-left-color: #38d9a9 !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    transform: translateX(4px) !important;
}

/* ── Icon ────────────────────────────────────────────────── */
:is(.dark .dark\:bg-white\/5) img,
.service-card img {
    border-radius: 7px !important;
    transition: filter 0.18s ease !important;
    filter: brightness(0.9) !important;
}

:is(.dark .dark\:bg-white\/5):hover img,
.service-card:hover img {
    filter: brightness(1.15) drop-shadow(0 0 6px rgba(56, 217, 169, 0.5)) !important;
}

/* ── Service-Name ────────────────────────────────────────── */
.service-name {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
}

/* ── Beschreibung ────────────────────────────────────────── */
.text-theme-500 {
    font-size: 10px !important;
    color: rgba(255, 255, 255, 0.38) !important;
    line-height: 1.4 !important;
}

/* ── Suchleiste ──────────────────────────────────────────── */
input[type="text"],
input[type="search"] {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 6px !important;
    color: #ffffff !important;
    font-size: 13px !important;
    transition: border-color 0.18s ease !important;
}

input[type="text"]:focus,
input[type="search"]:focus {
    border-color: rgba(56, 217, 169, 0.6) !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(56, 217, 169, 0.12) !important;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.25) !important;
}

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); }
::-webkit-scrollbar-thumb {
    background: rgba(56, 217, 169, 0.3);
    border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(56, 217, 169, 0.6);
}
