body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
	 justify-content: center;
    align-items: center;
}

header {
    background: #333;
    color: white;
    padding: 15px;
    text-align: center;
}
.nav-list {
    display: flex;
    list-style-type: none;
    padding: 0;
}

.nav-list li {
    margin: 10px 10px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

th {
    background: #555;
    color: white;
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px gray;
    width: 450px;
    text-align: center;
}

.popup-content {
    position: relative;
}

.popup p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.popup button {
    background: #007BFF;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
}

.popup button:hover {
    background: #0056b3;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
    color: red;
}
/* Wrapper for centering the login form */
.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

/* Main container holding the form */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    width: 100%;
    background: white;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    transition: all 0.3s ease-in-out;
}

/* Login box styling */
.login-box {
    width: 100%;
    text-align: center;
}

/* Heading */
.login-box h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #333;
}

/* Input field container */
.input-group {
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border 0.3s;
}

.input-group input:focus {
    border-color: #4facfe;
}

/* Submit button */
button.btn {
    width: 100%;
    padding: 12px;
    background-color: #4facfe;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button.btn:hover {
    background-color: #00f2fe;
}

/* Link to Register */
.signup-link {
    margin-top: 15px;
    font-size: 14px;
}

.signup-link a {
    color: #4facfe;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .login-container {
        padding: 30px;
    }
	
	
	.nav-list {
	
        display: none; /* Hide the menu on mobile */
        flex-direction: column;
        width: 100%;
    }

    .nav-list.show {
        display: flex; /* Show the menu when 'show' class is added */
    }

    .menu-toggle {
        display: block; /* Show hamburger on small screens */
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 4px;
        background-color: #fff;
        margin: 5px 0;
    }
}

/* Style the links inside the nav */
.nav-list li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    padding: 10px;
}
}

@media (max-width: 480px) {
    .login-container {
        padding: 20px;
    }

    .login-box h2 {
        font-size: 22px;
    }

    .input-group input {
        font-size: 14px;
    }

    button.btn {
        font-size: 14px;
    }
}