.conversion-panel {
            background: #f8fafc;
            border-radius: 16px;
            padding: 1.5rem;
            margin: 1rem 0;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }
        .input-group-custom {
            margin-bottom: 1.2rem;
        }
        .convert-input {
            font-family: 'Courier New', monospace;
            font-size: 1.1rem;
        }
        .example-badge {
            background-color: rgba(13, 110, 253, 0.1);
            border-radius: 20px;
            padding: 0.25rem 0.75rem;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.2s;
        }
        .example-badge:hover {
            background-color: rgba(13, 110, 253, 0.2);
            transform: translateY(-1px);
        }
        .conv-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        .conv-table th, .conv-table td {
            padding: 0.5rem;
            border: 1px solid #dee2e6;
            text-align: center;
            font-family: monospace;
        }
        .conv-table th {
            background-color: #eef2f5;
        }
        .algorithm-step {
            background-color: #f1f3f5;
            padding: 1rem;
            border-radius: 8px;
            font-family: monospace;
        }
        .conversion-note {
            font-size: 0.9rem;
            color: #2c3e66;
            border-left: 3px solid #0d6efd;
            padding-left: 1rem;
            margin: 1rem 0;
        }
        .badge-base {
            font-family: monospace;
            font-size: 0.75rem;
        }
        .copy-icon {
            cursor: pointer;
            color: #6c757d;
            margin-left: 8px;
            transition: 0.2s;
        }
        .copy-icon:hover {
            color: #0d6efd;
        }
        .status-valid {
            color: #198754;
            font-size: 0.8rem;
        }
        .status-invalid {
            color: #dc3545;
            font-size: 0.8rem;
        }
        .reference-link {
            text-decoration: none;
            border-bottom: 1px dotted;
        }
        .table-responsive-sm {
            overflow-x: auto;
        }
        .fa, .fas {
            margin-right: 0.2rem;
        }
        .offline-badge {
            background-color: #e2e3e5;
            border-radius: 20px;
            padding: 0.2rem 0.6rem;
            font-size: 0.7rem;
            display: inline-block;
        }
        .team-card {
            background: #f8f9fa;
            border-left: 4px solid #0d6efd;
            padding: 1rem;
            margin: 1.5rem 0;
            border-radius: 8px;
        }