body {
    font-family: Arial, sans-serif;
    background: #eef1f5;
    margin: 20px;
}

h1 {
    text-align: center;
    color: #222222;
    margin-bottom: 20px;
}

table {
    width: 85%;
    margin: 0 auto;
    border-collapse: collapse;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
}

th,
td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #e3e3e3;
    font-size: 15px;
}

th {
    background: #006bb3;
    color: white;
    letter-spacing: 0.05em;
}

.row-green {
    background-color: #dff7df;
}

.row-red {
    background-color: #f7dfdf;
}

.row-yellow {
    background-color: #fff7d5;
}

.row-blue {
    background-color: #dce8ff;
}

td a {
    color: #cc0000;
    text-decoration: none;
    font-weight: bold;
}

td a:hover {
    text-decoration: underline;
}

button {
    background-color: #0092b3;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 15px;
}

form {
    width: 50%;
    margin: 30px auto;
    margin-top: 0;
    background: white;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
}

form label {
    font-size: 15px;
    color: #333333;
    font-weight: bold;
}

form input[type="text"],
form input[type="date"],
form select,
form textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    margin-top: 5px;
    box-sizing: border-box;
}

form input:focus,
form textarea:focus,
form select:focus {
    border-color: #007acc;
    outline: none;
}

form input[type="submit"] {
    background: #007acc;
    color: white;
    padding: 10px 18px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}

form input[type="submit"]:hover {
    background: #005f99;
}