       body {
            margin: 0;
            display: flex;
            background: url('/web/img/meander-background.jpg') repeat;
            background-size: auto;
            background-color: #92BEFF;
              font-family: Garamond, serif;
  font-size: 1.2em;
        }

::selection {
  background-color: #034184;
  color: white;
  text-shadow: 1px 1px 2px black;
}

.side-box {
    width: 400px;
    margin-left: 275px;
    background: linear-gradient(135deg, #0465c1, #002D5D);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), 
                inset 0 2px 6px rgba(255, 255, 255, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .side-box {
margin-left: auto;
margin-right: auto;
    }
}

a {
  color: inherit;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

.sidebar a img {
    width: 25px;
    height: 25px;
}

.subtext {
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    display: block;
    margin-top: -20px;
}

.button {
    background: linear-gradient(135deg, #034184, #0673d1);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), inset 0 2px 6px rgba(255, 255, 255, 0.5);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

.button:hover {
    background: linear-gradient(135deg, #0673d1, #034184);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4), inset 0 2px 8px rgba(255, 255, 255, 0.6);
}

.button:active {
    background: linear-gradient(135deg, #023067, #0457a1);
    box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.5);
}

.sidebar {
    width: 250px;
    height: 100vh;
    background: linear-gradient(135deg, #034184, #0673d1);
    border-right: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.3), inset 0 2px 8px rgba(255, 255, 255, 0.4);
    padding-top: 20px;
    position: fixed;
    left: 0;
    top: 0;
    overflow-y: auto;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

        .sidebar a {
            display: block;
            color: white;
            padding: 15px;
            text-decoration: none;
        }

.sidebar a:hover {
    background: linear-gradient(135deg, #003b7a, #002D5D);
    box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.4), 
                0 2px 4px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}
        
.content {
    background: linear-gradient(135deg, #034184, #0673d1);
    border-radius: 20px;
    padding: 20px;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), inset 0 2px 6px rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin: 20px;
    margin-left: 270px;
}

.search-bar {
    width: 80%;
    max-width: 500px;
    padding: 12px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    outline: none;
    font-size: 16px;
    background: linear-gradient(135deg, #034184, #0673d1);
    color: white;
    box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.5),
                0 3px 6px rgba(0, 0, 0, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.search-bar::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-bar:focus {
    background: linear-gradient(135deg, #0465c1, #002D5D);
    box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.6),
                0 4px 8px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    body {
        flex-direction: column;
        align-items: center;
    }

    .sidebar {
        position: static;
        width: auto;
        height: auto;
        margin: 20px;
        padding: 15px;
        border-radius: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), inset 0 2px 8px rgba(255, 255, 255, 0.4);
        text-align: center;
    }

    .sidebar a {
        display: inline-block;
        margin: 5px;
        padding: 10px 20px;
        border-radius: 10px;
    }

    .content {
      margin-left: auto;
      margin-right: auto;
      max-width: 90%;
    }
}

.table-container {
    width: 100%;
    overflow-x: auto;
}

.table {
    width: 100%;
    max-width: 800px;
    border-collapse: collapse;
    margin: 20px auto;
    background: linear-gradient(135deg, #034184, #0673d1);
    color: white;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.table th, .table td {
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
}

.table th {
    background: rgba(255, 255, 255, 0.2);
    font-weight: bold;
}

.table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
    .table th, .table td {
        padding: 8px;
        font-size: 14px;
    }
    
    .table {
        font-size: 14px;
    }
}