        .glass-card {
            background: rgba(30, 41, 59, 0.7);
            backdrop-filter: blur(12px);
            border-radius: 0px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            padding: 3rem;
            margin-bottom: 1rem;
        }

        .glass-card-second {
            background: #101b2d;
            backdrop-filter: blur(12px);
            border-radius: 0px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            padding: 3rem;
            margin-bottom: 1rem;
        }

        .header {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        
        .header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            background: linear-gradient(90deg, #6C63FF, #4338ca);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            display: inline-block;
        }
        
        .header h1::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #6C63FF, #4338ca);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .header p {
            color: var(--gray);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 1.5rem auto 0;
        }
        
        .upload-section {
            margin-bottom: 2rem;
        }
        
        .drop-area {
            border: 2px dashed rgba(108, 99, 255, 0.5);
            border-radius: 16px;
            padding: 3rem 2rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(108, 99, 255, 0.05);
            position: relative;
            overflow: hidden;
        }
        
        .drop-area:hover, .drop-area.active {
            background: rgba(108, 99, 255, 0.1);
            border-color: var(--primary);
        }
        
        .drop-area i {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .drop-area .drop-text {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--light);
            margin-bottom: 0.5rem;
        }
        
        .drop-area .drop-hint {
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        .button-container {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .btn {
            background: transparent;
            color: var(--light);
            border: none;
            padding: 0.8rem 1.5rem;
            font-size: 1rem;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-weight: 500;
            transition: all 0.3s ease;
            min-width: 150px;
        }
        
        .btn-primary {
            background: linear-gradient(90deg, #6C63FF, #4338ca);
            box-shadow: 0 4px 10px rgba(108, 99, 255, 0.3);
        }
        
        .btn-primary:hover {
            box-shadow: 0 6px 15px rgba(108, 99, 255, 0.4);
            transform: translateY(-2px);
        }
        
        .btn-outline {
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        input[type="file"] {
            display: none;
        }
        
        .files-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1.5rem;
            opacity: 0;
            height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .files-table.active {
            opacity: 1;
            height: auto;
            overflow: visible;
            margin-bottom: 1.5rem;
        }
        
        .files-table thead th {
            text-align: left;
            padding: 1rem;
            background: rgba(30, 41, 59, 0.5);
            color: var(--gray);
            font-weight: 500;
            font-size: 0.9rem;
        }
        
        .files-table thead th:first-child {
            border-top-left-radius: 8px;
        }
        
        .files-table thead th:last-child {
            border-top-right-radius: 8px;
            text-align: right;
        }
        
        .files-table tbody td {
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.95rem;
        }
        
        .files-table tbody tr:last-child td {
            border-bottom: none;
        }
        
        .files-table tbody td:last-child {
            text-align: right;
        }
        
        .filename-cell {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        
        .file-icon {
            background: rgba(108, 99, 255, 0.1);
            padding: 0.5rem;
            border-radius: 8px;
            color: var(--primary);
        }
        
        .file-format {
            color: var(--primary);
            font-weight: 600;
        }
        
        .progress-bar-container {
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            overflow: hidden;
        }
        
        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #6C63FF, #4338ca);
            width: 0%;
            transition: width 0.3s ease;
        }
        
        .status-text {
            font-size: 0.85rem;
            color: var(--gray);
            margin-top: 0.3rem;
        }
        
        .status-text.success {
            color: var(--success);
        }
        
        .action-btn {
            background: transparent;
            border: none;
            color: var(--gray);
            cursor: pointer;
            font-size: 1rem;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }
        
        .action-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--light);
        }
        
        .action-btn.download {
            color: var(--primary);
        }
        
        .action-btn.remove {
            color: var(--danger);
        }
        

        .notification {
            position: fixed;
            top: 97px;
            right: 20px;
            background: var(--primary);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transform: translateX(150%);
            transition: transform 0.3s ease;
            z-index: 100;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        
        .notification.show {
            transform: translateX(0);
        }
        
        .notification i {
            font-size: 1.2rem;
        }


    /* Tablet styles */
    @media (max-width: 768px) {
        .files-table thead th,
        .files-table tbody td {
            padding: 0.75rem;
            font-size: 0.85rem;
        }

        .files-table thead th:last-child,
        .files-table tbody td:last-child {
            text-align: left;
        }

        .filename-cell {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }
            .glass-card {
                padding: 1rem;
            }
            .glass-card-second {
                padding: 1rem;
            }
    }

    /* Mobile phone styles */
    @media (max-width: 480px) {
        .files-table thead {
            display: none; /* Hide header on mobile phones */
        }

        .files-table tbody tr {
            display: block;
            margin-bottom: 1rem;
            border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        }

        .files-table tbody td {
            display: block;
            text-align: right;
            padding: 0.5rem;
            font-size: 0.8rem;
            border-bottom: none;
        }

        .files-table tbody td::before {
            content: attr(data-label); /* Use the data-label attribute to display labels */
            float: left;
            font-weight: bold;
            text-transform: uppercase;
            color: var(--gray);
        }

        .files-table tbody td:last-child {
            border-bottom: none;
        }

        .filename-cell {
            flex-direction: row;
            align-items: center;
            gap: 0.8rem;
        }
            .glass-card {
                padding: 1rem;
            }
            .glass-card-second {
                padding: 1rem;
            }
    }