    .styled-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    }

    .styled-table thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: left;
    }
    .styled-table th,
    .styled-table td {
    padding: 12px 15px;
    }

    .styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
    }

    .styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
    }

    .styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #009879;
    }

    .img-sml {
    width: 80px;
    height: auto;
    text-align: center;
    }

    .img-md {
    width: 1300px;
    height: 572px;
    text-align: center;
    }
    .vela_logo {
    width: 35px;
    height: auto;
    }

    * {
    box-sizing: border-box;
    }

    /* Style inputs */
    input[type="text"],
    select,
    textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    }

    input[type="submit"] {
    background-color: #04aa6d;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    }

    input[type="submit"]:hover {
    background-color: #45a049;
    }

    /* Style the container/contact section */
    .container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 10px;
    }

    /* Create two columns that float next to eachother */
    .column {
    float: left;
    width: 50%;
    margin-top: 6px;
    padding: 20px;
    }

    /* Clear floats after the columns */
    .row:after {
    content: "";
    display: table;
    clear: both;
    }

    /* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
    @media screen and (max-width: 600px) {
    .column,
    input[type="submit"] {
    width: 100%;
    margin-top: 0;
    }
    }

    /* Centered text */
    .centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    }

    .img-container {
    text-align: center;
    padding: 30px;
    width: auto;
    height: auto;

    }

    .image-collage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    }

    .image-collage img {
    max-width: 100%;
    height: auto;
    display: block;
    }

    /* Custom Styles for Sticky Menu */
    .navbar {
    background-color: #333;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    }

    .navbar a {
    margin: 0 15px;
    padding: 10px 20px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
    }

    .navbar a:hover {
    background-color: #f9f9f9;
    color: #333;
    border-radius: 5px;
    }

    body {
    margin: 0;
    padding-top: 60px; /* Adjust based on the height of your navbar */
    background-color: white;
    font-family: 'Roboto', sans-serif;
    }

    /* Additional styles to align with evidence-music.ch */
    .navbar a.active {
    background-color: #444;
    color: #fff;
    border-radius: 5px;
    }

    /* Slide-in animation */
    @keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
    }

    .slide-in {
    animation: slideIn 1s ease-out;
    }

    .uniform-img {
    width: 100%;
    height: 200px;
    object-fit: cover; /* Ensure the image covers the area without distortion */
    }

    /* Home images css */
    .hm-img-container {
        position: relative;
        width: 100%;
        overflow: hidden; /* Ensure the enlarged image doesn't overflow its container */
    }
    .hm-img-thumbnail {
        width: 100%;
        height: auto;
        transition: transform 0.3s ease; /* Smooth transition for the zoom effect */
    }
    .hm-img-thumbnail:hover {
        transform: scale(1.1); /* Scale up the image on hover */
    }
    .text-overlay {
        position: absolute;
        bottom: 10px;
        left: 0;
        width: 100%;
        text-align: center;
        color: white;
        background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
        padding: 5px 0;
    }
    .text-large {
        font-size: 20px;
        font-weight: bold;
    }
    /*  End Home images css*/

    /* youtube banner css */
    .youtube-banner {
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(to right, darkred, red);
        color: white;
        padding: 20px;
        text-align: center;
        border-radius: 8px;
        margin: 20px 0;
    }
    .youtube-banner img {
        width: 50px;
        height: auto;
        margin-right: 20px;
    }
    .youtube-banner a {
        color: white;
        text-decoration: none;
        font-size: 1.5em;
    }
    .youtube-banner a:hover {
        text-decoration: underline;
    }
    /* end youtube banner css */