header {
    background-color: #333;
    color: #fff;
    padding: 0px;
    text-align: center;
    font-size: 14px; /* Adjust the font size as needed */
}

/* Additional styles for the subfilter buttons */
#subfilter-container {
    text-align: center;
    margin: 10px 0;
}

#subfilter-container button {
    background-color: #ff5050; /* Change to your desired distinct color */
    color: white;
    padding: 8px 15px; /* Adjust padding for a smaller size */
    margin: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 14px; /* Adjust font size */
}

#subfilter-container button:hover {
    background-color: #ff4d4d; /* Change to your desired hover color */
}

#subfilter-container button.active {
    background-color: #ff0000; /* Change to your desired active color */
}


#effects-table {
    display: none;
    }
    /* Additional styles for the effects table */
/* Additional styles for the effects table */
#effects-container {
    text-align: center;
    margin: 20px 0;
}

#effects-table {
    width: 100%;
    border-collapse: collapse;
    display: none;
}

#effects-table th {
    text-align: left;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
}

#effects-table th:first-child {
    border-top-left-radius: 5px;
}

#effects-table th:last-child {
    border-top-right-radius: 5px;
}

#effects-table td,
#effects-table th {
    border: 1px solid #ddd;
    padding: 8px;
}

         /* Modal styles */
    .modal {
        display: none;
        position: fixed;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .modal-content {
        background-color: #fefefe;
        margin: 15% auto;
        margin-top: 5px;
        padding: 20px;
        border: 1px solid #888;
        width: 80%;
        max-width: 600px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        text-align: center; /* Center text within the modal content */
    }

    .close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
    }

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }
        header {
            background-color: #333;
            color: #fff;
            padding: 10px;
            text-align: center;
        }
        nav {
            text-align: center;
            margin: 10px 0;
        }
        nav button {
            background-color: #4CAF50;
            color: white;
            padding: 10px 20px;
            margin: 5px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        nav button:hover {
            background-color: #45a049;
        }
        nav button.active {
            background-color: #008CBA;
        }
        #trk.active {
        background-color: #008CBA; /* Change the background color to your desired style */
        /* Add any other styling you want for the active state */
        }
        main {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            padding: 20px;
        }
        .item {
            border: 1px solid #ccc;
            border-radius: 5px;
            margin: 10px;
            padding: 10px;
            text-align: center;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .item img {
            width: 100px;
            height: 100px;
            object-fit: scale-down;
            margin-bottom: 10px;
        }
        .item p {
            display: none;
        }
        input {
        color: transparent;
        text-shadow: 0 0 0 #2196f3;

            &:focus {
                outline: none;
            }
        }