.wrap {
    padding: 20px;
}

input[type="text"], input[type="date"], textarea {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: calc(100% - 22px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: border 0.3s ease;
}

input[type="text"]:focus, input[type="date"]:focus, textarea:focus {
    border: 1px solid #007bff;
    outline: none;
}

.button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}

.button:hover {
    background: #0056b3;
}

#fileList {
    margin-top: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}