.custom-file-upload {
    display: flex;
    align-items: center;
    gap: 10px;
}

.upload-icon-btn {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    color: #fff;
    box-sizing: border-box;
}

.upload-icon-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.05);
}

.upload-icon-btn svg {
    width: 28px;
    height: 28px;
    margin-top: 12px;
    margin-left: 15px;
    display: block;
}

.selected-file {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 6px 10px;
    background: rgba(255,255,255,0.05);
    color: #fff;
}

.selected-file .file-preview {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    display: none;
}

.selected-file .file-name {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.selected-file .remove-file {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}