/* Basic fileholder styles */
.fileholder-single {
    position: relative;
    margin-bottom: 15px;
}

.fileholder-single input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
}

.fileholder-single .file-info {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.fileholder-single .file-info .file-icon {
    margin-right: 10px;
}

.fileholder-single .file-info .file-name {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fileholder-single .file-info .remove-file {
    cursor: pointer;
    color: #ff0000;
    margin-left: 10px;
}
