:root {
            --primary-color: #58E0B7;
            --primary-color-rgb: 207, 31, 31;
        }
        
        #preloader {
            display: grid;
            place-items: center;
            height: 100vh;
        }

        #preloader div {
            text-align: center; 
        }

        #logoimg {
            max-width: 50%; /* loading image ratio */
            height: auto;
        }
        
        .history-table {
            width: 100%;
            margin-top: 20px;
            color: #fff;
            border-collapse: separate;
            border-spacing: 0 10px;
        }
        
        .history-table th, .history-table td {
            padding: 20px;
            text-align: left;
            border: none;
        }
        
        .history-table th {
            font-weight: 600;
            color: rgba(255,255,255,0.7);
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 1px;
            border-bottom: 2px solid rgba(88, 224, 183, 0.3);
        }

        .history-table tbody tr {
            background: rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .history-table tbody tr:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .history-table td:first-child {
            border-top-left-radius: 10px;
            border-bottom-left-radius: 10px;
            font-family: 'Saira', sans-serif;
            font-weight: bold;
            font-size: 18px;
        }

        .history-table td:last-child {
            border-top-right-radius: 10px;
            border-bottom-right-radius: 10px;
        }
        
        .history-table td {
            vertical-align: middle; /* Align content vertically */
            white-space: normal; /* Allow text to wrap normally in cells */
        }

        /* Description column should allow wrapping */
        .history-table td:nth-child(3) {
            min-width: 200px; /* Ensure description column has enough width */
        }

        .version-tag {
            display: inline-block; /* Ensure tags don't break awkwardly */
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            white-space: nowrap; /* Prevent text wrapping inside tag */
        }
        
        .tag-standard {
            background: linear-gradient(45deg, #1da5d7, #137a9f);
            color: white;
        }
        
        .tag-pro {
            background: linear-gradient(45deg, #d9534f, #b52b27);
            color: white;
        }

        /* Tabs Styling */
        .nav-tabs {
            border-bottom: none;
            margin-bottom: 40px;
            justify-content: center;
            gap: 15px;
        }
        
        .nav-tabs .nav-link {
            color: rgba(255,255,255,0.6);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 30px;
            font-size: 16px;
            padding: 12px 30px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: rgba(0,0,0,0.2);
        }
        
        .nav-tabs .nav-link:hover {
            color: #fff;
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        
        .nav-tabs .nav-link.active {
            background: var(--primary-color);
            color: #1a1a1a;
            border-color: var(--primary-color);
            font-weight: bold;
            box-shadow: 0 0 20px rgba(88, 224, 183, 0.4);
        }

        .de_3d-box {
            background: rgba(23, 26, 29, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            overflow: hidden;
            padding: 30px; /* Ensure padding is applied */
            display: block; /* Override any flex layout */
        }

        /* Fix h3 alignment inside the box */
        .de_3d-box h3 {
            margin-bottom: 20px;
            text-align: left; /* Align title to the left */
            width: 100%;
            display: block; /* Ensure h3 takes full width */
        }

        /* Ensure table-responsive takes full width */
        .de_3d-box .table-responsive {
            width: 100%;
        }

        .btn-sm {
            border-radius: 20px;
            padding: 8px 20px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: linear-gradient(45deg, #1da5d7, #137a9f);
            border: none;
        }

        .btn-danger {
            background: linear-gradient(45deg, #d9534f, #b52b27);
            border: none;
        }

        .btn-primary:hover, .btn-danger:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        /* Page Layout Fixes */
        #content {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        
        #download-history {
            flex: 1;
            display: flex;
            align-items: center;
            padding: 60px 0;
        }

        footer {
            margin-top: auto;
            background: #171A1D !important; /* Ensure dark background matches other pages */
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 30px 0;
        }

        /* Adjust Banner Height */
        .jarallax {
            height: 250px !important;
        }
