form {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="number"] {
    padding: 10px;
    width: 200px;
    margin-bottom: 10px;
}

.error {
    color: red;
    margin-top: 10px;
}

.result {
    margin-top: 20px;
    font-weight: bold;
}

textarea {
    display: none;
}

ul {
    list-style-type: none;
    padding: 0;
}

.button-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.custom-file-input-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    margin-right: 10px;
}

.download-link {
    margin-left: 10px;
    padding: 10px 15px;
    font-size: 14px;
    background-color: #ffc107;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
}

.download-link:hover {
    background-color: #e0a800;
}

.custom-file-input {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.custom-file-button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.custom-file-button:hover {
    background-color: #0056b3;
    cursor: pointer; /* Change cursor to pointer on hover */
}

.file-name {
    margin-top: 5px;
    color: #555;
    font-size: 14px;
}

.footer {
    background-color: #555;
    text-align: center;
}
