        .file-uploader {
            margin-bottom: 20px;
        }

        .upload-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .upload-header {
            padding: 4px;
            border-bottom: 1px solid #e9ecef;
            background: #f8f9fa;
        }

        .upload-header h3 {
            color: #333;
            font-size: 12px;
            font-weight: 600;
            margin: 0;
            text-align: center;
        }

        .upload-area {
            padding: 8px;
            height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .empty-state {
            width: 100%;
            cursor: pointer;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .empty-content {
            border: 2px dashed #dee2e6;
            border-radius: 8px;
            background: #fafbfc;
            transition: all 0.3s ease;
            text-align: center;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 0 20px;
        }

        .empty-state:hover .empty-content {
            border-color: #007bff;
            background: #f8fbff;
        }

        .empty-icon {
            font-size: 24px;
            color: #6c757d;
            margin-bottom: 5px;
            display: block;
            font-weight: 300;
        }

        .empty-content p {
            color: #6c757d;
            font-size: 14px;
            margin: 0;
            font-weight: 500;
        }

        .files-section {
            width: 100%;
            height: 120px;
            display: flex;
            align-items: center;
        }

        .files-container-wrapper {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .files-container {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            flex-wrap: nowrap;
            overflow-x: auto;
            height: 140px;
            width: 100%;
            padding: 0;
        }

        .file-item {
            position: relative;
            width: 120px;
            height: 120px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            animation: fadeIn 0.3s ease;
            flex-shrink: 0;
            background: white;
            border: 1px solid #e9ecef;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2px;
        }

        .file-preview {
            width: 100%;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 5px;
        }

        .file-preview img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 4px;
        }

        .file-icon {
            font-size: 40px;
            color: #6c757d;
        }

        .file-icon.image {
            color: #28a745;
        }

        .file-icon.pdf {
            color: #dc3545;
        }

        .file-icon.video {
            color: #007bff;
        }

        .file-icon.word {
            color: #2b579a;
        }

        .file-icon.excel {
            color: #217346;
        }

        .file-icon.powerpoint {
            color: #d24726;
        }

        .file-icon.zip {
            color: #6f42c1;
        }

        .file-icon.default {
            color: #6c757d;
        }

        .file-name {
            font-size: 10px;
            color: #333;
            text-align: center;
            font-weight: 500;
            line-height: 1.2;
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .remove-btn {
            position: absolute;
            top: 5px;
            right: 5px;
            background: rgba(159, 159, 159, 0.78);
            color: white;
            border: none;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        /*{#.file-item:hover .remove-btn {#}*/
        /*{#    opacity: 1;#}*/
        /*{#  } #}*/

        .add-more-item {
            width: 120px;
            height: 120px;
            border: 2px dashed #dee2e6;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #fafbfc;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .add-more-item:hover {
            border-color: #007bff;
            background: #f8fbff;
        }

        .add-more-item.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .add-more-item.disabled:hover {
            border-color: #dee2e6;
            background: #fafbfc;
        }

        .add-more-content {
            text-align: center;
            padding: 10px;
        }

        .add-icon {
            font-size: 20px;
            color: #6c757d;
            margin-bottom: 5px;
            display: block;
            font-weight: 300;
        }

        .add-more-content p {
            color: #6c757d;
            font-size: 11px;
            margin: 0;
            font-weight: 500;
            line-height: 1.2;
        }

        .upload-footer {
            padding: 4px 4px;
            background: #f8f9fa;
            border-top: 1px solid #e9ecef;
            text-align: center;
        }

        .remaining-text {
            color: #6c757d;
            font-size: 12px;
            font-weight: 500;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .files-container::-webkit-scrollbar {
            height: 8px;
            margin-top: 10px;
        }

        .files-container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 4px;
            margin: 0 10px;
        }

        .files-container::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 4px;
        }

        .files-container::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }

        .files-container {
            scrollbar-width: thin;
            scrollbar-color: #c1c1c1 #f1f1f1;
        }

        @media (max-width: 480px) {
            .upload-area {
                padding: 8px;
                height: 130px;
            }

            .empty-state {
                height: 100px;
            }

            .files-section {
                height: 100px;
            }

            .files-container {
                height: 80px;
            }

            .file-item, .add-more-item {
                width: 110px;
                height: 80px;
            }

            .files-container {
                gap: 10px;
            }

            .empty-content {
                padding: 0 15px;
            }

            .empty-icon {
                font-size: 20px;
                margin-bottom: 3px;
            }

            .empty-content p {
                font-size: 13px;
            }

            .files-container::-webkit-scrollbar {
                height: 6px;
                margin-top: 8px;
            }

            .file-icon {
                font-size: 20px;
            }

            .file-name {
                font-size: 9px;
            }
        }