body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}



form {
    display: grid;
    gap: 10px;
}

label {
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 8px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

button:hover {
    background-color: #45a049;
}

button:active {
    background-color: #3e8e41;
}
table {
	background-color: #ffffff;

}
thead tit{
    background-color: #102343; /* Header background color */
    color: #ffffff; /* Header text color */
}

tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}
th, td {
    border: 1px solid #dddddd; /* Border around each cell */
    padding: 8px; /* Padding inside each cell */
    text-align: center; /* Align text inside cells */
}
table {
    width: 100%;
	
    border-collapse: collapse; /* Remove default cell spacing */
}


