body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header {
    text-align: center;
    margin-bottom: 20px;
}

#logo {
    border-radius: 30px;
    clip-path: circle(50% at center); /* Make Circle */
}

header img {
    max-width: 100px;
}

h1 {
    font-size: 24px;
    color: #333;
}

#co-name {
    font-size: 24px;
    margin-top: -5px;
    color: black;
}

#dept {
    font-size: 24px;
    color: #333;
}

form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

#fileList {
    margin-top: 10px;
}

.file-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.file-item span {
    flex-grow: 1;
}

.file-item .remove-btn {
    background: none;
    border: none;
    color: #ff0000;
    font-size: 18px;
    cursor: pointer;
}

footer {
    text-align: center;
    margin-top: 20px;
    color: #777;
    font-size: 14px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 96%;
    /* Adjust width as necessary */
    margin: 0 auto 10px auto;
    /* Centers the input and adds margin below */
    padding: 10px;
}

#fileList div {
    background-color: #fbfafa;
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
    border-width: 1px;
    border-color: #007bff;
    border-style: solid;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#fileList div:nth-child(even) {
    background-color: #fbfafa;
}

#dropZone {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    cursor: pointer;
}

#dropZone.drag-over {
    background-color: #f0f0f0;
    border-color: #999;
}

.drop-message {
    margin-bottom: 10px;
    color: #999;
}