﻿        #licenseDetails .addons-grid {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.1rem;
        }

        #licenseDetails .addon-card {
            background: rgba(18, 24, 39, 0.65);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            padding: 1.1rem;
            transition: border-color 0.25s ease, transform 0.25s ease;
        }

        #licenseDetails .addon-card:hover {
            border-color: rgba(139, 92, 246, 0.35);
            transform: translateY(-2px);
        }

        #licenseDetails .addon-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.85rem;
        }

        #licenseDetails .addon-title-wrap {
            display: flex;
            align-items: center;
            gap: 0.55rem;
        }

        #licenseDetails .addon-name {
            font-size: 1rem;
            font-weight: 700;
            color: #FFFFFF;
            margin: 0;
        }

        #licenseDetails .addon-detail-row {
            display: flex;
            gap: 0.4rem;
            font-size: 0.82rem;
            color: #9CA3AF;
            margin-bottom: 0.5rem;
        }

        #licenseDetails .addon-detail-label {
            font-weight: 600;
        }

        /* My Licenses section */
        #licenseDetails .my-licenses-section {
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        #licenseDetails .license-list-card {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            padding: 12px 14px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            margin-bottom: 8px;
            transition: background 0.2s ease;
        }

        #licenseDetails .license-list-card:hover {
            background: rgba(255, 255, 255, 0.07);
        }

        #licenseDetails .license-list-card .license-key {
            font-family: 'Courier New', Courier, monospace;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.85);
            flex: 1 1 220px;
            word-break: break-all;
        }

        #licenseDetails .license-list-card .license-meta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.65);
            flex: 2 1 360px;
        }

        #licenseDetails .license-list-card .license-meta strong {
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
        }

        /* History list */
        #licenseDetails .history-item {
            padding: 0.7rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.85rem;
        }

