/* styles.css */

body {
    font-family: Arial, sans-serif;
    margin: 20px;
    line-height: 1.6;
}

h1, h2, h3 {
    color: #333;
}

form {
    margin-bottom: 20px;
}

input[type="file"], input[type="text"], input[type="password"], textarea {
    margin: 5px 0;
    padding: 10px;
    width: 100%;
}

input[type="submit"] {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #218838;
}

.section {
    border: 1px solid #ddd;
    padding: 10px;
    margin: 20px 0;
}

.file-list {
    margin-top: 10px;
}

.file-list-item {
    margin-bottom: 5px;
}

.file-list-item a {
    margin-right: 10px;
}
