/* Reset defaults */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        margin: 10;
		float: center;
		font-family: Verdana, sans-serif;
		font-size: 14px; /* base size */
		line-height: 1.6;
		display: flex;
		justify-content: center;
		align-items: center;
		min-height: 100vh;
		padding: 10px;
    }

    /* Header styling */
    header {
        overflow: hidden;
		background-color: #ffffff;
		padding: 2px 10px;
        position: relative;
    }

    header h1 {
        font-size: 1.5rem;
        display: inline-block;
    }

	th, td {
		padding: 2px 2px;
	}

	label {
		/*font-size: 1rem;*/
	}

	input[type="submit"] {
		border-radius: 2px;
		padding: 8px 8px;
	}
	
	input[type="text"] {
		padding: 1px 2px;
	}

	input[type="password"] {
		padding: 1px 2px;
	}


/* Container */
.container {
    background: #fff;
    padding: 20px;
	border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

/* Headings */
h1, h2, h3 {
    text-align: center;
    margin-bottom: 20px;
}

    /* Navigation menu */
    nav {
        display: inline-block;
        float: right;
    }

    nav ul {
        list-style: none;
    }

    nav ul li {
        display: inline-block;
        margin-left: 20px;
    }

    nav ul li a {
        color: #fff;
        text-decoration: none;
        padding: 8px;
        transition: background 0.3s;
    }

    nav ul li a:hover {
        background-color: #575757;
        border-radius: 4px;
    }

    /* Hamburger icon */
    .menu-toggle {
        display: none;
        font-size: 1.8rem;
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 10px;
    }

    /* Hide the checkbox */
    #menu-checkbox {
        display: none;
    }

    /* Responsive styles */
    @media (max-width: 768px) {
		.container {
			padding: 15px;
		}

		button {
			font-size: 14px;
			padding: 10px;
		}
		
        nav {
            width: 100%;
            background-color: #333;
            clear: both;

            /* Animation setup */
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.3s ease-in-out;
        }

        nav ul {
            display: block;
            text-align: center;
        }

        nav ul li {
            display: block;
            margin: 10px 0;
        }

        /* Show hamburger icon */
        .menu-toggle {
            display: block;
        }

        /* Animate open when checkbox is checked */
        #menu-checkbox:checked + label + nav {
            transform: scaleY(1);
        }
    }

    /* Content area */
    .content {
        padding: 20px;
    }
