        body {
            font-family: Arial, sans-serif;
            background-color: #f8f9fa;
            margin: 0;
            padding: 0;
        }

        .picturecontainer img {
            position: relative;
            width: 100%;
            height: auto;
            overflow: hidden;
        }

        .container2 {
            position: relative;
            width: 100%;
            height: auto;
        }

        h1, h2 {
            text-align: center;
            color: #333;
        }

        nav {
            margin-bottom: 20px;
           /* overflow: hidden;*/
        }

        nav ul {
            list-style-type: none;
            padding: 0;
            text-align: center;
            /*display: flex;
            flex-wrap: wrap; /* Allow items to wrap 
            justify-content: center;*/
        }

        nav ul li {
            display: inline-block;
            vertical-align: middle;
            margin-top: 10px;
            margin-bottom: 20px;
            margin-right: 20px;
        }

        nav ul li a {
            text-decoration: none;
            color: #ffffff; /* #007bff; */
            font-weight: bold;
            border: 1px solid #fff; /* Add thin white border */
            box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
            padding: 10px 15px; /* Add padding */
            text-align: center; /* Center the text */
            border-radius: 20px; /* Rounded corners */
        }
        
        nav ul li a.profile {
            box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
            padding: 10px 15px; /* Add padding */
            text-align: center; /* Center the text */
            border: none; /* Remove border for profile icon */
        }
        
        

        nav ul li a:hover {
            text-decoration: underline;
            color: #f3f0208f; /* #007bff; */
        }

        nav ul li img.profile-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
        }
        
        nav ul li a.profile:hover img.profile-icon {
                transform: scale(1.2); /* Scale the image to 1.2 times its original size */
        }

        /* Form styling */
        form {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
        }

        form label {
            margin: 5px 0;
            display: block;
        }

        label {
            margin-top: 10px;
            font-weight: bold;
        }

        input[type="text"],
        input[type="email"],
        input[type="password"],
        input[type="date"],
        select {
            padding: 10px;
            margin-top: 5px;
            margin-bottom: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
            width: 100%;
            box-sizing: border-box;
        }

        input[type="submit"] {
            padding: 10px 20px;
            margin-top: 20px;
            border: none;
            border-radius: 5px;
            background-color: #4CAF50;
            color: white;
            font-size: 16px;
            cursor: pointer;
            width: 100%;
            box-sizing: border-box;
        }

        input[type="submit"]:hover {
            background-color: #45a049;
        }

        .home {
            /*display: inline-block;
            width: 96%;*/
            padding: 10px 20px;
            margin-top: 20px;
            border: none;
            border-radius: 5px;
            background-color: #4CAF50;
            color: white;
            font-size: 16px;
            cursor: pointer;
        }
        

        .home:hover {
            background-color: #45a049;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }

        table, th, td {
            border: 1px solid black;
        }

        th, td {
            padding: 10px;
            text-align: left;
        }

        th {
            background-color: #f2f2f2;
        }

        #calendar {
            margin-top: 20px;
            max-width: 100%;
            overflow-x: auto;
            font-size: 0.8em; /* Adjust font size for better fit on small screens */
        }
        
        .collapsible {
                display: none;
        }
        
        .content {
            display: block;
        }
        

        /* Default styles for larger screens (laptops, desktops) */
        .container {
            align-items: center;
            padding: 20px;
            width: 80%;
            max-width: 1200px;
            margin: auto;
            border: 1px solid #ccc;
            background-color: #f9f9f9;
            box-sizing: border-box;
            border-radius: 10px;
        }

        .container .li img {
            float: right;
            width: 200px;
            height: auto;
            margin: 0 0 20px 20px;
        }

        .container p {
            font-size: 18px;
        }

        /* Responsive styles for tablets and phones */
        @media (max-width: 768px) {
            
            
        .collapsible {
            background-color: #f2f2f2;
            color: #333;
            cursor: pointer;
            padding: 10px;
            width: 100%;
            border: none;
            text-align: left;
            outline: none;
            font-size: 1.1em;
        }

        .active, .collapsible:hover {
            background-color: #e2e2e2;
        }

        .collapsible.hidden {
            display: none; /* Hide content when toggled */
        }
        
        .content {
            padding: 0 10px;
            display: none;
            overflow: hidden;
            background-color: #f9f9f9;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
            
            .container {
                width: 96%;
                padding: 8px;
            }

            .container img {
                max-width: 100%;
                height: auto;
            }

            .container p {
                font-size: 16px;
            }

            nav ul {
                flex-direction: column;
                align-items: center;
            }

            form label, form select, form input[type="submit"] {
                font-size: 12px;
            }
        }
        
        table, thead, tbody, th, td, tr {
        display: block;
    }

    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    tr {
        margin: 0 0 1rem 0;
        border: 1px solid #ddd;
    }

    td {
        border: none;
        border-bottom: 1px solid #ddd;
        position: relative;
        padding-left: 50%;
    }

    td:before {
        position: absolute;
        top: 50%;
        left: 10px;
        width: calc(50% - 20px); /* Adjust width as needed */
        white-space: nowrap;
        transform: translateY(-50%);
        content: attr(data-label);
        font-weight: bold;
    }
    
    td:last-child {
        border-bottom: 0;
    }
        
        
        /* Styles for mobile phones */
@media (max-width: 480px) {
    .container {
        padding: 4px;
    }

    .container p {
        font-size: 12px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin-bottom: 10px;
        width: 100%; /* Make nav items full width on mobile */
    }

    nav ul li a {
        display: block; /* Make nav links block elements on mobile */
        width: 100%; /* Make nav links full width on mobile */
        border: 1px solid #fff; /* Add thin white border */
        box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
        padding: 10px 15px; /* Add padding */
        text-align: center; /* Center the text */
    }
    
    nav ul li a.profile {
            text-decoration: none;
            color: #ffffff; /* #007bff; */
            font-weight: bold;
            border: 1px solid #fff; /* Add thin white border */
            box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
            padding: 10px 15px; /* Add padding */
            text-align: center; /* Center the text */
        }
        
        nav ul li a.profile:hover img.profile-icon {
                transform: scale(1.2); /* Scale the image to 1.2 times its original size */
        }
    
    form {
        flex-direction: column;
        align-items: center;
    }

    form label, form select, form input[type="submit"] {
        font-size: 11px;
    }

    #calendar {
        font-size: 0.8em; /* Adjust font size for better fit */
    }
}

        .clearfix::after {
            content: "";
            clear: both;
            display: table;
        }

        .inline-box {
            display: inline-block;
            padding: 10px;
            margin: 5px;
            border: 1px solid #000;
            width: 200px;
            text-align: center;
        }
        .legend {
    display: flex;
    align-items: center;
    }

    .dot {
        height: 12px;
        width: 12px;
        border-radius: 50%;
        display: inline-block;
        margin-right: 5px;
    }
    
    .purple {
        background-color: #800080;
    }
    
    .red {
        background-color: #ff0000;
    }
    
    .green {
        background-color: #03ff00;
    }
    
    .legend span {
        margin-right: 15px;
    }