/* Reset light, kein Overkill */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, sans-serif;
    background: #0b0b0f;
    color: #e5e7eb;
}

.layout {
    display: flex;
    min-height: 100vh;
}

/* rechter Bereich neben Sidebar */
.page {
	margin-left: 240px;  /* Content beginnt rechts von Sidebar */ 
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
} 

.sidebar {
    position: fixed;   /* Sidebar bleibt immer sichtbar */
    top: 0;
    left: 0;
    width: 240px;
    height: 100vh;     /* volle Höhe des Viewports */
    background: #0f1117;
    border-right: 1px solid #1f2937;
    padding: 20px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;  /* scrollbar, falls die Sidebar zu lang wird */
    z-index: 1000;
}

.sidebar .nav hr {
    border: 1px solid #6366f1;
    margin: 10px 0;
}

.sidebar .nav p {
    font-weight: bold;
    color: #00fff7;
    margin: 5px 0;
}
 
.sidebar-footer {
    margin-top: auto;
}

/* Logo */
.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00fff7;
    text-shadow:
        0 0 8px rgba(0,255,247,.6),
        0 0 20px rgba(0,255,247,.3);
    margin-bottom: 40px;
}

/* Navigation */
.nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nav a {
    color: #c7d2fe;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 6px;
    transition: background .15s, box-shadow .15s, color .15s;
}

.nav a:hover {
    color: #fff;
    background: rgba(99,102,241,.15);
    box-shadow:
        0 0 10px rgba(99,102,241,.6),
        inset 0 0 0 1px rgba(99,102,241,.4);
}

.nav a.active {
    color: #fff;
    background: rgba(99,102,241,.25);
    box-shadow:
        0 0 12px rgba(99,102,241,.8),
        inset 0 0 0 1px rgba(99,102,241,.6);
}

/* Content */
.content {
    flex: 1;
    padding: 40px;
}

.login-btn {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;

    background: linear-gradient(
        90deg,
        #00fff7,
        #6366f1,
        #ec4899
    );
    background-size: 200% 200%;

    box-shadow:
        0 0 15px rgba(99,102,241,.6),
        0 0 30px rgba(236,72,153,.3);

    transition: transform .15s, box-shadow .15s;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 20px rgba(99,102,241,.9),
        0 0 40px rgba(236,72,153,.5);
}

.greeting {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #00fff7;
    text-shadow:
        0 0 5px #00fff7,
        0 0 15px #6366f1,
        0 0 30px #ec4899;
    animation: neon-flicker 2s infinite alternate;
}

/* leichtes Neon-Flackern */
@keyframes neon-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
    20%, 22%, 24%, 55% { opacity: 0.8; }
}

/* Cards */

.cards {
    display: flex;
    gap: 75px;               /* Abstand zwischen den Cards */
    flex-wrap: wrap;          /* bei kleinen Bildschirmen untereinander */
    justify-content: center;  /* Cards horizontal zentrieren */
} 
 
.cards .card {
    flex: 1 1 40%;           /* Basisbreite für Flex */
    max-width: 600px;        /* sorgt für echte Schrumpfung */
    min-width: 220px;
	margin-top: 40px;
    background: linear-gradient(180deg, #1f1f1f, #181818);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 
        0 0 8px rgba(0,255,255,0.6),
        0 0 16px rgba(99,102,241,0.4),
        0 0 24px rgba(236,72,153,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}  

/* Hover Effekt */
.cards .card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 12px rgba(0,255,255,0.8),
        0 0 24px rgba(99,102,241,0.6),
        0 0 36px rgba(236,72,153,0.5);
}

/* Card Header */
.cards h2 {
    text-align: center;
    color: #00fff7;
    text-shadow: 0 0 8px #00fff7;
}

/* Trennlinie */
hr {
    border: none;
    height: 2px;
    background: linear-gradient(
        90deg,
        #00fff7,
        #6366f1,
        #ec4899
    );
    margin: 20px 0; /* Abstand oben und unten */
    border-radius: 4px;
}

/* Card Content: Flex für Block/Drop + Icon */
.cards .card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

/* Block/Drop links */
.block-drop-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.block-row strong,
.drop-row strong {
    font-weight: 600;
}

.block-text,
.drop-text {
    font-weight: 600;
    font-size: 1rem;
}

/* Icon rechts */
.card-header-icon {
    width: 80px;
    height: auto;
    border-radius: 8px;
    box-shadow:
        0 0 8px rgba(0,255,255,0.6),
        0 0 16px rgba(99,102,241,0.4),
        0 0 24px rgba(236,72,153,0.3);
}

/* Footer Datum */
.card-footer {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #858796;
    border-top: 1px solid #333;
    padding-top: 10px;
    text-align: center;
}

/* ----------------- Bereich unter den Cards ----------------- */
.card-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-icon img {
    max-width: 80px;
    height: auto;
}

.card-stats {
    margin-top: 40px;
    padding: 15px;
    background: linear-gradient(180deg, #1f1f1f, #181818);
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow:
        0 0 8px rgba(0,255,255,0.4),
        0 0 16px rgba(99,102,241,0.2),
        0 0 24px rgba(236,72,153,0.2);
}

.card-stats h3 {
    margin-bottom: 30px; /* Abstand zwischen Überschrift und den Einträgen */
	text-align:center;
} 
  
.card-stats ul {
    list-style: none;
    padding-left: 40px; /* Verschiebt den Text nach rechts */
}

.card-stats li {
    margin-bottom: 8px;
} 







/* ----------------- Farmen ----------------- */

.farmen-page .card {
    background: #1f1f1f;
    padding: 20px;
    border-radius: 12px;
    box-shadow:
        0 0 10px rgba(0,255,255,0.3),
        0 0 20px rgba(99,102,241,0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.farmen-page .farm-name {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #00fff7;
    text-shadow: 0 0 6px #00fff7;
}

.farmen-page .card-info-row {
    display: flex;
    align-items: center;
}

.farmen-page .owner {
    font-weight: bold;
    color: #fff;
    font-size: 1em;
    text-shadow: 0 0 4px #6366f1;
    margin-right: 100px;   /* schiebt PH-Block nach rechts */
    white-space: nowrap;
}

.farmen-page .ph-text {
    white-space: nowrap;
    flex-shrink: 0;
}

.farmen-page .ph-text {
    white-space: nowrap;
    color: #0ff;
    font-weight: bold;
    text-shadow: 0 0 6px #0ff;
}

.farmen-page .copy-btn {
    margin-left: auto;     /* schiebt ihn ganz nach rechts */
    margin-left: 80px;     /* Abstand zum PH-Text */
    background: linear-gradient(90deg, #00fff7, #6366f1, #ec4899);
    border: none;
    color: #111;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.85em;
    transition: transform 0.2s, box-shadow 0.2s;
}

.farmen-page .ph-wrapper {
    display: flex;
    align-items: center;
    min-width: 0;
}

.farmen-page .copy-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 6px #00fff7,
        0 0 12px #6366f1,
        0 0 18px #ec4899;
}

.farmen-page .items-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.farmen-page .item-tag {
    background: #222;
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid #444;
    font-size: 0.9em;
    white-space: nowrap;
    color: #fff;
    box-shadow: 0 0 4px #6366f1;
}

.farmen-page hr {
    margin-top: 2px;   /* statt Standard */
    margin-bottom: 2px;
}



/* ----------------- Shops ----------------- */

.shops-page .card {
    background: #1f1f1f;
    padding: 20px;
    border-radius: 12px;
    box-shadow:
        0 0 10px rgba(0,255,255,0.3),
        0 0 20px rgba(99,102,241,0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.shops-page .farm-name {
    text-align: center;
    font-size: 1.5em;
	margin-bottom: 2px;
    color: #00fff7;
    text-shadow: 0 0 6px #00fff7;
}  
   
.shops-page .card-info-row {
    display: flex;
    align-items: center;
}

.shops-page .owner {
    font-weight: bold;
    color: #fff;
    font-size: 1em;
    text-shadow: 0 0 4px #6366f1;
    margin-right: 100px;   /* schiebt PH-Block nach rechts */
    white-space: nowrap;
}

.shops-page .ph-text {
    white-space: nowrap;
    flex-shrink: 0;
}

.shops-page .ph-text {
    white-space: nowrap;
    color: #0ff;
    font-weight: bold;
    text-shadow: 0 0 6px #0ff;
}

.shops-page .copy-btn {
    margin-left: auto;     /* schiebt ihn ganz nach rechts */
    margin-left: 80px;     /* Abstand zum PH-Text */
    background: linear-gradient(90deg, #00fff7, #6366f1, #ec4899);
    border: none;
    color: #111;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.85em;
    transition: transform 0.2s, box-shadow 0.2s;
}

.shops-page .ph-wrapper {
    display: flex;
    align-items: center;
    min-width: 0;
}

.shops-page .copy-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 6px #00fff7,
        0 0 12px #6366f1,
        0 0 18px #ec4899;
}

.shops-page .items-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.shops-page .item-tag {
    background: #222;
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid #444;
    font-size: 0.9em;
    white-space: nowrap;
    color: #fff;
    box-shadow: 0 0 4px #6366f1;
}

.shops-page hr {
    margin-top: 2px;   /* statt Standard */
    margin-bottom: 2px;
}


/* ----------------- Login ----------------- */

.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #121212;
    color: #fff;
    font-family: Arial, sans-serif;
}

/* Wrapper für beide Cards */
.login-register-wrapper {
    display: flex;
    gap: 30px; /* Abstand zwischen Login und Registrierung */
}

/* Gemeinsames Card Styling für Login + Registrierung */
.card {
    background: linear-gradient(180deg, #1f1f1f, #181818);
    padding: 40px;
    border-radius: 12px;
    box-shadow:
        0 0 12px rgba(0,255,255,0.6),
        0 0 24px rgba(99,102,241,0.4),
        0 0 36px rgba(236,72,153,0.3);
    width: 320px;
    text-align: center;
}

/* Überschriften */
.card h2 {
    margin-bottom: 24px;
    font-size: 26px;
    color: #00fff7;
}

/* Labels & Inputs */
.card label {
    display: block;
    text-align: left;
    margin-bottom: 6px;
    margin-top: 12px;
    font-weight: bold;
}

.card input {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 10px;
    border-radius: 6px;
    border: 1px solid #333;
    background: #1f1f1f;
    color: #fff;
}

/* Buttons */
.card button {
    width: 100%;
    padding: 10px;
    background: linear-gradient(90deg, #00fff7, #6366f1, #ec4899);
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 10px;
}

.card button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 6px #00fff7,
        0 0 12px #6366f1,
        0 0 18px #ec4899;
}

/* Fehlermeldungen */
.error-msg {
    background: #ff4d4f;
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 12px;
    text-align: center;
}

/* Erfolgsmeldungen */
.success-msg {
    background: #22c55e;
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 12px;
    text-align: center;
}



/* ----------------- Admin ----------------- */

.admin-page .cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
} 

.admin-page .card-small {
    max-width: 280px;
    flex: 0 0 280px;
}

.admin-page .card {
    background: linear-gradient(180deg, #1f1f1f, #181818);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 20px;
    width: 380px;        /* feste Breite, damit beide nebeneinander passen */
    max-width: 100%;     /* für kleine Bildschirme */
    box-shadow:
        0 0 8px rgba(0,255,255,0.6),
        0 0 16px rgba(99,102,241,0.4),
        0 0 24px rgba(236,72,153,0.3);
}

@media screen and (max-width: 800px) {
    .admin-page .card {
        width: 90%;       /* untereinander auf kleineren Screens */
    }
}

.admin-page .card h2 {
    margin-top: 0;
    margin-bottom: 10px;
}

.admin-page .card form {
    display: flex;
    flex-direction: column;
}

.admin-page .card label {
    margin-top: 5px;
    font-weight: bold;
}
 
.admin-page .card input,
.admin-page .card select {
	margin-bottom: 15px;
    padding: 6px;
    border-radius: 6px;
    border: 1px solid #333;
    background-color: #1f1f1f;
    color: #fff;
} 

.admin-page .card button {
    margin-top: 20px;
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    background: linear-gradient(90deg, #00fff7, #6366f1, #ec4899);
    color: #fff;
    transition: 0.2s;
}

.admin-page .card button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 6px #00fff7,
        0 0 12px #6366f1,
        0 0 18px #ec4899;
}

.admin-page .alert.success {
    background-color: #1f3931;
    border-left: 5px solid #00ff87;
    padding: 10px;
    margin-bottom: 20px;
    color: #fff;
}

.admin-page .alert.error {
    background-color: #3a1f1f;
    border-left: 5px solid #ff3b3b;
    padding: 10px;
    margin-bottom: 20px;
    color: #fff;
}

.admin-page .card textarea {
    margin-top: 4px;
    padding: 6px;
    border-radius: 6px;
    border: 1px solid #333;
    background-color: #1f1f1f;
    color: #fff;
    height: 110px;      /* wie die Inputs */
    resize: none;       /* User kann die Größe nicht ändern */
}

.table-wrapper {
    overflow-x: auto;
}

.users-table {
    width: 100%;
    border-collapse: collapse;
}

.users-table th,
.users-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.users-table th {
    background: #1f1f1f;
    color: #fff;
}

.row-inactive {
    opacity: 0.6;
}

.status-btn {
    padding: 6px 12px;
    min-width: 110px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
}

.status-btn.active {
    background: #e74c3c;
    color: #fff;
}
 
.status-btn.inactive {
    background: #2ecc71;
    color: #fff;
}

.status-btn:hover:not(:disabled) {
    opacity: 0.85;
}

.status-btn:disabled {
    background: #aaa;
    color: #fff;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Modal Background */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5); 
    justify-content: center;
    align-items: center;
}

/* Modal Box */
.modal-content {
    background-color: #1f1f1f;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

/* Buttons */
.modal-buttons button {
    margin: 10px;
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

#confirmBtn { background-color: #28a745; color: #fff; }
#cancelBtn  { background-color: #dc3545; color: #fff; }


/* ----------------- Einstellungen ----------------- */

.settings-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.settings-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #0f0f0f;
    color: #fff;
}

.settings-form input::placeholder {
    color: #888;
}

.settings-form input:focus {
    outline: none;
    border-color: #1cc88a;
}

/* 2FA Input in settings.php Modal */
.settings-2fa-input {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    border-radius: 8px;
    border: 2px solid #0ff;        /* neon cyan */
    background-color: #111;         /* dunkel */
    color: #fff;
    font-size: 16px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    transition: all 0.2s ease-in-out;
}

.settings-2fa-input:focus {
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
    outline: none;
    background-color: #222;
}


.message.error {
    background: rgba(220,53,69,0.15);
    color: #dc3545;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.settings-page .card button {
    width: 100%;
    margin-top: 15px;
    padding: 14px 0;

    background: linear-gradient(135deg, #1cc88a, #17a673);
    border: none;
    border-radius: 8px;

    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;

    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 3px 6px rgba(0,0,0,0.25);
}

.settings-page .card button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.35);
    filter: brightness(1.05);
}

.settings-page .card button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* 2FA Modal */
.modal-2fa {
    display: none; /* Modal standardmäßig verstecken */
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}


.modal-2fa-content {
    background-color: #1f1f1f;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 350px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
}

.modal-2fa-content h2 {
    margin-bottom: 20px;
    color: #0ff;
}

.modal-2fa-content input[type="text"] {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #0ff;
    background-color: #111;
    color: #fff;
    margin-bottom: 20px;
}

.modal-2fa-content button {
    padding: 10px 20px;
    background-color: #0ff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    color: #111;
}

.modal-2fa-content button:hover {
    background-color: #00cccc;
}

.card img.qr-code {
    margin: 20px 0;      /* Abstand oben/unten */
    max-width: 200px;     /* auf Wunsch skalieren */
    border-radius: 8px;   /* optional abgerundete Ecken */
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5); /* leichter Glow */
}


.site-footer {
    width: 100%;
    background-color: #111;
    color: #e5e7eb;
    text-align: center;
    padding: 10px 0; 
    border-top: 1px solid #222;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-icons-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-icons {
    width: 30px;
    height: 30px;
    transition: transform 0.2s, filter 0.2s;
}

.footer-icons:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.footer-text p {
    margin: 1px 0;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-text .heart {
    color: #e25555; /* neon-rot */
    display: inline-block;
    animation: heartbeat 1s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
    75% { transform: scale(1.2); }
}

.copy-btn {
    position: relative;
    padding: 5px 12px;
    font-size: 0.9rem;
    border: none;
    border-radius: 5px;
    background-color: #0ff;
    color: #111;
    cursor: pointer;
    transition: transform 0.15s, filter 0.15s;
}

.copy-btn:hover {
    filter: brightness(1.2);
}

.copy-btn.copied {
    /* nur kleiner Effekt, keine Farbänderung */
    transform: scale(1.05);
}

/* Tooltip */
.copy-tooltip {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    color: #0ff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
}

.copy-btn.copied .copy-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}


.server-banner {
    margin-top: 20px;
    text-align: center;
}

.server-banner img {
    width: 100%;
    border-radius: 12px;
} 


/* =========================
   Fische-Seite / Tabelle
========================= */
.fische-card {
	width: 90%;
    background: #1f1f1f;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 
        0 0 10px rgba(0,255,255,0.3), 
        0 0 20px rgba(99,102,241,0.2);
    max-width: 1000px;
    margin: 20px auto;
} 

.fische-card form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.fische-card input[name="search"] {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #444;
    background: #1f1f1f;
    color: #0ff;
    font-size: 1em;
    outline: none;
    width: 220px;
    transition: border 0.2s, box-shadow 0.2s;
}

.fische-card input[name="search"]:focus {
    border-color: #6366f1;
    box-shadow: 0 0 8px #6366f1;
}

.fische-card h2 {
    text-align: center;
    color: #00fff7;
    text-shadow: 0 0 6px #00fff7;
    margin-bottom: 15px;
}

.fische-card button[type="submit"] {
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(90deg, #00fff7, #6366f1, #ec4899);
    color: #111;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.fische-card button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 6px #00fff7,
        0 0 12px #6366f1,
        0 0 18px #ec4899;
} 

.fische-card table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.fische-card th, .fische-card td {
    padding: 10px;
    border-bottom: 1px solid #444;
}

.fische-card th {
    color: #0ff;
    text-shadow: 0 0 6px #0ff
}

.pagination {
    text-align: center;
    margin-top: 15px;
}

.pagination a {
    display: inline-block;
    margin: 0 5px;
    padding: 5px 10px;
    background: #222;
    color: #0ff;
    border-radius: 5px;
    text-decoration: none;
}

.pagination a.active {
    background: #0ff;
    color: #111;
    font-weight: bold;
}