/* File upload preview styling */
.files-preview {
    list-style-type: none;
    padding: 0;
    margin: 10px 0;
}

.files-preview li {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 12px;
    margin-bottom: 5px;
    font-size: 0.9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    position: relative; /* For positioning the remove button */
    padding-right: 30px; /* Make space for the remove button */
}

.file-list {
    margin-top: 8px;
}

.file-info {
    font-style: italic;
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

.remove-file {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: #dc3545;
    border: none;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
}

.remove-file:hover {
    color: #c82333;
    background-color: transparent;
}