body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: #e5e7eb;
    margin: 0;
    padding: 80px 20px 20px;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #f9fafb;
}

.navbar {
    width: 100%;
    background-color: #0f172a;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.navbar a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: 0.2s;
}

.navbar a:hover {
    color: #38bdf8;
}

table {
    width: 500px;
    border-collapse: collapse;
    background-color: #020617;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    margin: 20px auto;

}

caption {
    padding: 12px 16px;
    font-weight: bold;
    font-size: 1.1rem;
}

thead {
    background-color: #111827;
}

th,
td {
    padding: 12px 16px;
    border-bottom: 1px solid #1f2937;
}

tbody tr:nth-child(even) {
    background-color: #030712;
}

tbody tr:nth-child(odd) {
    background-color: #020617;
}

tbody tr:hover {
    background-color: #1e293b;
    transform: scale(1.02);
    transition: 0.2s ease;
    cursor: pointer;
}


table.friedfische {
    border: 1px solid #22c55e;
}

table.friedfische caption {
    background: linear-gradient(90deg, #16a34a, #22c55e);
    color: #022c22;
}

table.raubfische {
    border: 1px solid #f97316;
}

table.raubfische caption {
    background: linear-gradient(90deg, #ea580c, #f97316);
    color: #1b1307;
}


.panel {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}


.box,
.info-box,
.equipment-box {
    background-color: #0f172a;
    border: 1px solid #1e293b;
    padding: 20px;
    border-radius: 12px;
    max-width: 700px;
    margin: 20px auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}


.box-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.box {
    width: 300px;
}

.fischbild {
    width: 180px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.startbild {
    width: 100%;
    max-width: 900px;
    border-radius: 12px;
    display: block;
    margin: 20px auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}


.intro-text {
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
    line-height: 1.6;
}

@media (max-width: 600px) {
    table {
        width: 100%;
    }

    .fischbild {
        width: 140px;
        height: auto;
    }
}