/* body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 5px;
}
.header-img {
    font-family: Arial, sans-serif;
    background-image: url('../img/images.png');
    background-size: cover;
    background-position: center; 
    filter: blur(5px); 
    position: fixed; 
    width: 100%;
    height: 100%;
    z-index: -1;
}
h2 {
    color: #003366;
	margin-bottom:0px;
}

form {
    background: #fff; 
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 10px;
}

input[type="text"],
input[type="number"],
input[type="password"],
input[type="datetime-local"],
textarea, select{
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #003366;
    color: #fff;
    border: none;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button:hover {
    background: #00509e;
}

.tabs, .subtabs {
            display: flex;
            margin-bottom: 5px;
            cursor: pointer;
        }
        .tab, .subtab {
            flex: 1;
            text-align: center;
            padding: 5px;
            background-color: #007BFF;
            color: white;
            margin-right: 2px;
            border-radius: 5px 5px 0 0;
        }
        .tab:last-child, .subtab:last-child {
            margin-right: 0;
        }
        .tab.active, .subtab.active {
            background-color: #0056b3;
        }
        .tab-content, .subtab-content {
            display: none;
            padding: 5px;
            border: 1px solid #ddd;
            border-radius: 0 5px 5px 5px;
        }
        .tab-content.active, .subtab-content.active {
            display: block;
        }
.header1 {
	width: 100%;
	height: 100%;
	border: 3px solid #73AD21;
} */

/*.tabcontent {
    display: none;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
}

.tablinks {
    background: #007acc;
    color: white;
    border: none;
    padding: 10px;
    margin-right: 5px;
    cursor: pointer;
}

.subtabs {
    margin: 10px 0;
}

.subtabcontent {
    display: none;
}

.subtablinks {
    background: #0099cc; 
    color: white;
    border: none;
    padding: 10px;
    margin-right: 5px;
    cursor: pointer;
}/* Medium blue */

/* table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
}

th, td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #003366; /* Dark blue */
    /* color: white;
} */

/* .export_button {
    background: #007acc; 
    color: white;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
}

.export_button:hover {
    background: #00509e; 
} */
/* Reset some default styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4; 
    padding-top: 20px;

}
.header-img {
    font-family: Arial, sans-serif;
    background-image: url('../img/images.png');
    background-size: cover;
    background-position: center; 
    filter: blur(5px); 
    position: fixed; 
    width: 100%;
    height: 100%;
    z-index: -1;
}
#container {
    max-width: 400px; 
    margin: 100px auto; 
    padding: 20px;
    background-color: #fff;
    border-radius: 8px; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

h2 {
    text-align: center; 
    color: #333;
}

form {
    padding-top: 10px;
    display: flex;
    flex-direction: column; 
}

input[type="text"],
input[type="password"] {
    padding: 10px; 
    margin: 10px 0; 
    border: 1px solid #ddd; 
    border-radius: 5px;
    font-size: 16px; 
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #007bff; 
    outline: none; 
}

button {
    padding: 10px; 
    background-color: #007bff; 
    color: #fff; 
    border: none;
    border-radius: 5px; 
    cursor: pointer; 
    font-size: 16px; 
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3; 
}

p {
    text-align: center; 
    margin-top: 15px; 
}

a {
    color: #007bff; 
    text-decoration: none; 
}

a:hover {
    text-decoration: underline;
}