.drag-area {
        border: 2px dashed #3b82f6;
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        transition: all 0.3s ease;
    }

    .drag-area.dragover {
        border-color: #2563eb;
        background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
        transform: scale(1.02);
    }

    .file-item {
        background: white;
        border-radius: 0.375rem; /* rounded-md */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .file-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .progress-bar-container {
        height: 0.5rem; /* h-2 */
        overflow: hidden;
        border-radius: 9999px;
        background-color: #e5e7eb;
    }

    .progress-bar {
        height: 100%;
        min-height: 100%;
        border-radius: 9999px;
        background: linear-gradient(90deg, #3b82f6, #8b5cf6);
        transition: width 0.3s ease;
    }

    .scale-btn {
        padding: 12px 16px;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        background: white;
        cursor: pointer;
        transition: all 0.2s;
        text-align: center;
    }

    .scale-btn:hover {
        border-color: #3b82f6;
        transform: translateY(-1px);
    }

    .scale-btn.active {
        border-color: #3b82f6;
        background: #3b82f6;
        color: white;
        transform: translateY(-1px);
    }

    .scale-btn.active .scale-btn-text {
        color: white !important;
    }

    @keyframes pulse {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.5;
        }
    }

    .processing {
        animation: pulse 1.5s ease-in-out infinite;
    }

    .algorithm-card {
        background: white;
        border-radius: 12px;
        padding: 16px;
        border: 2px solid #e5e7eb;
        transition: all 0.2s;
        cursor: pointer;
    }

    .algorithm-card:hover {
        border-color: #3b82f6;
        transform: translateY(-2px);
    }

    .algorithm-card.active {
        border-color: #3b82f6;
        background: #f0f9ff;
    }

    .comparison-container {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
    }

    .comparison-slider {
        position: absolute;
        top: 0;
        left: 50%;
        width: 4px;
        height: 100%;
        background: #3b82f6;
        cursor: ew-resize;
        z-index: 10;
    }

    .comparison-slider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        background: #3b82f6;
        border-radius: 50%;
        border: 2px solid white;
    }
