body {
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #f7f7f7;
    color: #333;
    margin: 0;
    padding: 20px;
}

h1 {
    color: #222;
    margin-bottom: 10px;
}

a {
    color: #0077cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

table {
    border-collapse: collapse;
    width: 100%;
    background-color: white;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    border-bottom: 1px solid #ddd;
    padding: 10px 14px;
    text-align: left;
}

th {
    background-color: #0077cc;
    color: white;
}

tr:hover {
    background-color: #f2f2f2;
}

form {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    width: 400px;
}

form p {
    margin: 10px 0;
}

input[type="text"],
input[type="date"],
input[type="number"],
textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="submit"] {
    background-color: #0077cc;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #005fa3;
}

img {
    max-width: 320px;
    border-radius: 8px;
    box-shadow: 0 0 6px rgba(0,0,0,0.2);
}
