﻿        /* Wider cards for license details / downloads only */
        .container.wide {
            max-width: 1400px;
        }

        .card {
            background: var(--oxford-blue);
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            padding: 30px;
            margin-bottom: 20px;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .header {
            text-align: center;
            margin-bottom: 40px;
        }

        .header h1 {
            color: var(--white);
            font-size: 28px;
            font-weight: 700;
            margin: 20px 0 10px 0;
            line-height: 1.2;
        }

        .header p {
            color: rgba(255,255,255,0.7);
            font-size: 14px;
            line-height: 1.6;
            margin: 5px 0;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--white);
            font-size: 14px;
        }

        .form-group input {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: var(--white);
            color: var(--oxford-blue);
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--picton-blue);
            box-shadow: 0 0 0 3px rgba(4, 169, 236, 0.2);
        }

        .btn {
            background: linear-gradient(135deg, var(--folly-pink) 0%, var(--folly-pink-light) 100%);
            color: white;
            border: none;
            padding: 15px 28px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s ease;
            text-transform: none;
        }

        .btn:hover {
            background: linear-gradient(135deg, var(--picton-blue) 0%, var(--picton-blue-light) 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(4, 169, 236, 0.4);
        }

        .btn:disabled {
            background: var(--gray-dark);
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .alert {
            padding: 16px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .alert-success {
            background: rgba(16, 185, 129, 0.15);
            border: 1px solid rgba(16, 185, 129, 0.3);
            color: #10b981;
        }

        .alert-error {
            background: rgba(255, 31, 94, 0.15);
            border: 1px solid rgba(255, 31, 94, 0.3);
            color: var(--folly-pink);
        }

        .alert-info {
            background: rgba(4, 169, 236, 0.15);
            border: 1px solid rgba(4, 169, 236, 0.3);
            color: var(--picton-blue);
        }

        .license-info {
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .license-info .field {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .license-info .field:last-child {
            border-bottom: none;
        }

        .license-info .label {
            font-weight: 600;
            color: rgba(255,255,255,0.7);
        }

        .license-info .value {
            color: var(--white);
            font-family: monospace;
            background: rgba(255,255,255,0.1);
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 14px;
        }

        .history-item {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 6px;
            padding: 12px;
            margin-bottom: 8px;
        }

        .history-date {
            font-size: 12px;
            color: rgba(255,255,255,0.5);
            margin-bottom: 4px;
        }

        .history-change {
            font-size: 14px;
            color: var(--white);
        }

        .loading {
            text-align: center;
            padding: 40px;
            color: rgba(255,255,255,0.7);
        }

        .hidden {
            display: none;
        }

        .quick-actions {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 12px;
            margin: 20px 0;
        }

        .quick-action-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 14px;
            background: linear-gradient(135deg, var(--picton-blue) 0%, var(--picton-blue-light) 100%);
            color: var(--white);
            border: none;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 4px 12px rgba(4, 169, 236, 0.25);
        }

        .quick-action-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(4, 169, 236, 0.35);
        }

        .quick-action-btn i {
            font-size: 16px;
        }