/* style.css */
/* Light, simple styling for ProjectDrop */

body {
    font-family: Arial, sans-serif;
    margin: 40px;
    background-color: #f8f9fa;
    color: #333;
}

h1, h2 {
    color: #222;
}

input[type="text"], textarea {
    width: 100%;
    max-width: 600px;
    padding: 8px;
    font-size: 16px;
    margin-top: 4px;
}

input[type="submit"] {
    padding: 10px 20px;
    font-size: 16px;
    margin-top: 10px;
    cursor: pointer;
}

a {
    color: #0047ab;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

table {
    border-collapse: collapse;
    margin-top: 20px;
    width: 100%;
    max-width: 900px;
}

th, td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

td:nth-child(4) {
    text-align: center;
}
