.file-uploader {
    width: 100%;
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 5px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
    margin-bottom: 20px;
}

.file-uploader.drag-over {
    border-color: #3498db;
    background-color: rgba(52, 152, 219, 0.1);
}

.file-input {
    display: none;
}

.upload-zone {
    width: 100%;
    min-height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px;
}

.upload-icon {
    color: #95a5a6;
    margin-bottom: 5px;
}

.upload-text {
    color: #7f8c8d;
    margin-bottom: 5px;
    font-size: 16px;
}

.upload-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.upload-button:hover {
    background-color: #2980b9;
}

.paperclip-icon {
    margin-right: 8px;
}

.files-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.file-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.file-icon {
    margin-right: 15px;
    color: #3498db;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.file-type-icon {
    width: 24px;
    height: 24px;
}

.file-info {
    flex: 1;
}

.file-name {
    font-weight: 500;
    margin-bottom: 4px;
    word-break: break-all;
}

.file-type {
    font-size: 12px;
    color: #7f8c8d;
}

.file-action {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    margin-left: 5px;
}

.view-file {
    color: #3498db;
}

.view-file:hover {
    background-color: rgba(52, 152, 219, 0.1);
}

.remove-file {
    color: #e74c3c;
}

.remove-file:hover {
    background-color: rgba(231, 76, 60, 0.1);
}

.add-more-files {
    margin-top: 5px;
    display: flex;
    justify-content: center;
}

.add-more-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #3498db;
    padding: 5px 5px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    border: 1px solid #3498db;
    transition: all 0.3s ease;
}

.add-more-button:hover {
    background-color: rgba(52, 152, 219, 0.1);
}
