.match-row.live {
            background: linear-gradient(135deg, rgba(220, 53, 69, 0.05), rgba(220, 53, 69, 0.1));
        }
        
.page-header h1 {
    font-size: 1.6em;
    margin-bottom: 0.5rem;
    color: #f1f1f1;
    line-height: 1.3;
}
        
        .team-logo {
            width: 30px;
            height: 30px;
            object-fit: contain;
        }
        
        .breadcrumb {
            background: rgba(255, 255, 255, 0.9);
            padding: 10px 15px;
            border-radius: var(--radius);
            margin-bottom: 15px;
            font-size: 0.9em;
            border: 1px solid var(--border);
        }
        
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        .breadcrumb span {
            color: var(--secondary);
        }
        
        :root {
            --primary: #dc3545;
            --primary-dark: #c82333;
            --secondary: #6c757d;
            --success: #28a745;
            --danger: #dc3545;
            --warning: #ffc107;
            --info: #17a2b8;
            --light: #f8f9fa;
            --dark: #343a40;
            --border: #dee2e6;
            --radius: 8px;
            --radius-sm: 6px;
            --shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        

        
        .pitch-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: linear-gradient(180deg, #0a3d20 0%, #0e5229 30%, #0a3d20 100%);
            overflow: hidden;
        }
        
        .grass-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                repeating-linear-gradient(
                    90deg,
                    transparent,
                    transparent 20px,
                    rgba(10, 61, 32, 0.3) 20px,
                    rgba(10, 61, 32, 0.3) 40px
                ),
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 20px,
                    rgba(15, 82, 41, 0.3) 20px,
                    rgba(15, 82, 41, 0.3) 40px
                );
            z-index: -1;
        }
        
        .field-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            z-index: -1;
        }
        
        .center-circle {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            z-index: -1;
        }
        
        .center-dot {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            z-index: -1;
        }
        
        .penalty-box {
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 100px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            z-index: -1;
        }
        
        .penalty-box.bottom {
            top: auto;
            bottom: 20px;
        }
        
        .football-animation {
            position: fixed;
            z-index: -1;
            opacity: 0.15;
            animation: float 30s infinite linear;
        }
        
        .football {
            font-size: 2rem;
            color: rgba(255, 255, 255, 0.8);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        @keyframes float {
            0% {
                transform: translateX(-100px) translateY(-100px) rotate(0deg);
            }
            25% {
                transform: translateX(calc(100vw - 100px)) translateY(calc(100vh - 200px)) rotate(360deg);
            }
            50% {
                transform: translateX(calc(100vw - 200px)) translateY(-100px) rotate(720deg);
            }
            75% {
                transform: translateX(-100px) translateY(calc(100vh - 200px)) rotate(1080deg);
            }
            100% {
                transform: translateX(-100px) translateY(-100px) rotate(1440deg);
            }
        }
        
        .background-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.92);
            z-index: -1;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px;
            position: relative;
            z-index: 1;
        }
        
        .page-header {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.75)), url(https://png.pngtree.com/thumb_back/fw800/background/20250903/pngtree-night-football-field-goal-net-close-up-under-deep-blue-sky-image_18657518.webp);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: #fff;
            border-radius: var(--radius);
            padding: 35px;
            margin-bottom: 4px;
            box-shadow: var(--shadow);
            border: 2px solid rgba(255, 255, 255, 0.25);
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #ffd700, #ffffff, #ffd700);
            animation: shimmer 3s infinite;
        }
        
        @keyframes shimmer {
            0% { background-position: -200px 0; }
            100% { background-position: calc(200px + 100%) 0; }
        }
        
        .page-title {
            font-size: 1.4em;
            font-weight: 700;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .page-title i {
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        
        .page-subtitle {
            font-size: 0.9em;
            opacity: 0.9;
        }
        
        .control-panels{
            background: url("https://png.pngtree.com/thumb_back/fw800/background/20250831/pngtree-nighttime-stadium-with-bright-floodlights-illuminating-empty-soccer-field-under-dark-image_18700363.webp");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 15px;
            margin-bottom: 5px;
            border-radius: 6px;
        }
        
        .date-controls {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .date-btn {
            background: var(--light);
            border: 1px solid var(--border);
            padding: 8px 15px;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.9em;
        }
        
        .date-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(220, 53, 69, 0.2);
        }
        
        .date-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
        }
        
        .date-picker {
            flex: 1;
            min-width: 180px;
        }
        
        .date-picker input {
            width: 100%;
            padding: 8px 12px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            font-family: inherit;
            font-size: 0.9em;
            text-align: center;
            transition: all 0.2s;
        }
        
        .date-picker input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
            outline: none;
        }
        
        .refresh-btn {
            background: var(--info);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.9em;
        }
        
        .refresh-btn:hover {
            background: #138496;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(23, 162, 184, 0.2);
        }
        
        .refresh-btn:active {
            transform: translateY(0);
        }
        
        .view-options {
            display: flex;
            gap: 8px;
            margin-top: 15px;
            flex-wrap: wrap;
        }
        
        .view-btn {
            padding: 6px 12px;
            background: var(--light);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all 0.2s;
            font-size: 0.85em;
        }
        
        .view-btn:hover {
            background: var(--border);
            transform: translateY(-1px);
        }
        
        .view-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            box-shadow: 0 2px 4px rgba(220, 53, 69, 0.2);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .stat-card {
            border-radius: var(--radius);
            padding: 15px;
            box-shadow: var(--shadow);
            border-top: 3px solid;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        
        .stat-card.total { border-top-color: var(--primary); }
        .stat-card.live { border-top-color: var(--danger); }
        .stat-card.ended { border-top-color: var(--success); }
        .stat-card.upcoming { border-top-color: var(--info); }
        .stat-card.leagues { border-top-color: var(--warning); }
        
        .stat-value {
            font-size: 1.8em;
            font-weight: 700;
            margin-bottom: 5px;
            line-height: 1;
        }
        
        .stat-label {
            font-size: 0.85em;
            color: var(--secondary);
        }
        
        .stat-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.8em;
            opacity: 0.2;
        }
        
        .league-card {
            border-radius: var(--radius);
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .league-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        }
        
        .league-header {
            padding: 12px 15px;
            border-right: 4px solid;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .league-info {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
            min-width: 0;
        }
        
        .league-icon {
            font-size: 1.5em;
            flex-shrink: 0;
            animation: spin 20s infinite linear;
        }
        
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .league-title {
            min-width: 0;
        }
        
        .league-header h5 {
            font-size: 1.1em;
            font-weight: 600;
            margin: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .league-count {
            font-size: 0.85em;
            color: var(--secondary);
        }
        
        .league-stats {
            display: flex;
            gap: 8px;
            margin-right: 10px;
            flex-wrap: wrap;
        }
        
        .badge {
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 0.75em;
            font-weight: 600;
            white-space: nowrap;
            transition: transform 0.2s;
        }
        
        .badge:hover {
            transform: scale(1.05);
        }
        
        .live-badge {
            background: rgba(220, 53, 69, 0.1);
            color: var(--danger);
            border: 1px solid rgba(220, 53, 69, 0.3);
        }
        
        .upcoming-badge {
            background: rgba(23, 162, 184, 0.1);
            color: var(--info);
            border: 1px solid rgba(23, 162, 184, 0.3);
        }
        
        .ended-badge {
            background: rgba(40, 167, 69, 0.1);
            color: var(--success);
            border: 1px solid rgba(40, 167, 69, 0.3);
        }
        
        .matches-container {
            padding: 10px;
        }
        
        .match-row {
            display: flex;
            align-items: center;
            padding: 12px;
            margin-bottom: 8px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .match-row::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 3px;
            height: 100%;
            transition: width 0.3s ease;
        }
        
        .match-row.live::before {
            background: var(--danger);
            animation: pulse-border 2s infinite;
        }
        
        .match-row.ended::before {
            background: var(--success);
        }
        
        .match-row.upcoming::before {
            background: var(--info);
        }
        
        @keyframes pulse-border {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        .match-row:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        }
        
        .match-row.live {
            background: rgba(220, 53, 69, 0.05);
        }
        
        .match-row.ended {
            background: rgba(40, 167, 69, 0.05);
        }
        
        .match-row.upcoming {
            background: rgba(23, 162, 184, 0.05);
        }
        
        .match-time {
            width: 100px;
            text-align: center;
            padding: 0 10px;
            flex-shrink: 0;
        }
        
        .match-time .time {
            font-weight: 600;
            font-size: 0.95em;
            color: var(--dark);
        }
        
        .match-time .stadium {
            font-size: 0.75em;
            color: var(--secondary);
            margin-top: 3px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .teams {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            min-width: 0;
        }
        
        .team {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
            min-width: 0;
        }
        
        .home-team {
            justify-content: flex-end;
            text-align: right;
        }
        
        .away-team {
            justify-content: flex-start;
            text-align: left;
        }
        
        .team-flag {
            font-size: 1.4em;
            flex-shrink: 0;
            width: 30px;
            text-align: center;
        }
        
        .team-logo {
            width: 28px;
            height: 28px;
            object-fit: contain;
            border-radius: 50%;
            border: 1px solid var(--border);
            background: white;
            padding: 1px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        
        .team-logo:hover {
            transform: scale(1.1);
            box-shadow: 0 3px 8px rgba(0,0,0,0.15);
        }
        
        .match-row.live .team-logo {
            border-color: var(--danger);
            box-shadow: 0 1px 3px rgba(220, 53, 69, 0.2);
        }
        
        .match-row.ended .team-logo {
            border-color: var(--success);
            box-shadow: 0 1px 3px rgba(40, 167, 69, 0.2);
        }
        
        .match-row.upcoming .team-logo {
            border-color: var(--info);
            box-shadow: 0 1px 3px rgba(23, 162, 184, 0.2);
        }
        
        .team-name {
            font-weight: 600;
            font-size: 0.95em;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            flex: 1;
        }
        
        .match-score {
            text-align: center;
            padding: 0 15px;
            min-width: 100px;
            flex-shrink: 0;
        }
        
        .vs {
            color: var(--secondary);
            font-size: 0.9em;
            font-weight: 600;
        }
        
        .score {
            font-weight: 700;
            font-size: 1.2em;
            transition: all 0.3s;
        }
        
        .match-row.live .score {
            color: var(--danger);
            text-shadow: 0 2px 4px rgba(220, 53, 69, 0.2);
            animation: pulse-score 2s infinite;
        }
        
        @keyframes pulse-score {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }
        
        .match-row.ended .score {
            color: var(--success);
        }
        
        .match-minute {
            font-size: 0.8em;
            color: var(--danger);
            font-weight: 600;
            margin-top: 3px;
            animation: pulse 1s infinite;
        }
        
        .match-status {
            width: 120px;
            text-align: center;
            flex-shrink: 0;
        }
        
        .status-badge {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.8em;
            font-weight: 600;
            white-space: nowrap;
            transition: all 0.3s;
        }
        
        .status-badge.live {
            background: rgba(220, 53, 69, 0.1);
            color: var(--danger);
            border: 1px solid rgba(220, 53, 69, 0.3);
            animation: pulse 2s infinite;
        }
        
        .status-badge.ended {
            background: rgba(40, 167, 69, 0.1);
            color: var(--success);
            border: 1px solid rgba(40, 167, 69, 0.3);
        }
        
        .status-badge.upcoming {
            background: rgba(23, 162, 184, 0.1);
            color: var(--info);
            border: 1px solid rgba(23, 162, 184, 0.3);
        }
        
        .status-badge.cancelled,
        .status-badge.postponed {
            background: rgba(108, 117, 125, 0.1);
            color: var(--secondary);
            border: 1px solid rgba(108, 117, 125, 0.3);
        }
        
        .alert {
            padding: 12px 15px;
            border-radius: var(--radius);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9em;
            background: rgba(255, 255, 255, 0.95);
        }
        
        .alert-warning {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            color: #856404;
        }
        
        .alert-danger {
            background: #f8d7da;
            border: 1px solid #f5c6cb;
            color: #721c24;
        }
        
        .loading {
            text-align: center;
            padding: 40px 0;
        }
        
        .spinner {
            width: 40px;
            height: 40px;
            border: 3px solid #f3f3f3;
            border-top: 3px solid var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 15px;
        }
        
        .scroll-top {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background: var(--primary);
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            border: 2px solid white;
            z-index: 1000;
            font-size: 1.2em;
        }
        
        .scroll-top.visible {
            opacity: 1;
        }
        
        .scroll-top:hover {
            background: var(--primary-dark);
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
        }
        
        @media (max-width: 768px) {
            body {
                background: #0a3d20;
            }
            
            .container {
                padding: 10px;
            }
            
            .page-header {
                padding: 15px;
                margin-bottom: 15px;
            }
            
            .page-title {
                font-size: 1.2em;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            
            .stat-card {
                padding: 12px;
            }
            
            .stat-value {
                font-size: 1.5em;
            }
            
            .date-controls {
                flex-direction: column;
            }
            
            .date-picker {
                width: 100%;
            }
            
            .date-btn, .refresh-btn {
                width: 100%;
                justify-content: center;
                padding: 10px;
            }
            
            .league-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                padding: 15px;
            }
            
            .league-stats {
                margin-right: 0;
                margin-top: 5px;
                justify-content: flex-start;
                width: 100%;
                gap: 5px;
            }
            
            .badge {
                font-size: 0.7em;
                padding: 3px 6px;
            }
            
            .match-row {
                flex-direction: column;
                padding: 15px;
                margin-bottom: 10px;
                align-items: stretch;
            }
            
            .match-row::before {
                width: 100%;
                height: 4px;
                top: 0;
                right: 0;
            }
            
            .match-time {
                width: 100%;
                text-align: right;
                padding: 0 0 10px 0;
                display: flex;
                justify-content: space-between;
                align-items: center;
                border-bottom: 1px solid rgba(0,0,0,0.05);
                margin-bottom: 10px;
            }
            
            .match-time .time {
                font-size: 1em;
                font-weight: 700;
                color: var(--primary);
            }
            
            .match-time .stadium {
                font-size: 0.8em;
                color: var(--secondary);
                margin-top: 0;
                max-width: 60%;
                text-align: left;
            }
            
            .teams {
                flex-direction: column;
                gap: 15px;
                padding: 0;
                margin: 10px 0;
            }
            
            .team {
                width: 100%;
                justify-content: space-between;
                padding: 5px 0;
                border-bottom: 1px solid rgba(0,0,0,0.05);
            }
            
            .team:last-child {
                border-bottom: none;
            }
            
            .home-team {
                flex-direction: row;
                text-align: right;
                justify-content: flex-end;
            }
            
            .away-team {
                flex-direction: row-reverse;
                text-align: right;
                justify-content: flex-start;
            }
            
            .team-flag {
                font-size: 1.2em;
                width: 25px;
            }
            
            .team-logo {
                width: 24px;
                height: 24px;
            }
            
            .team-name {
                font-size: 1em;
                font-weight: 600;
                max-width: calc(100% - 80px);
            }
            
            .match-score {
                order: -1;
                margin: 10px 0;
                width: 100%;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
                border-top: 1px solid rgba(0,0,0,0.1);
            }
            
            .vs {
                font-size: 1.1em;
                font-weight: 700;
            }
            
            .score {
                font-size: 1.4em;
                display: block;
                margin: 5px 0;
            }
            
            .match-minute {
                font-size: 0.9em;
                margin-top: 5px;
            }
            
            .match-status {
                width: 100%;
                text-align: center;
                margin-top: 10px;
                padding-top: 10px;
                border-top: 1px solid rgba(0,0,0,0.05);
            }
            
            .status-badge {
                padding: 8px 20px;
                font-size: 0.9em;
                width: 100%;
                max-width: 200px;
                margin: 0 auto;
            }
            
            .view-options {
                justify-content: center;
            }
            
            .view-btn {
                flex: 1;
                text-align: center;
                min-width: 80px;
                padding: 8px;
                font-size: 0.8em;
            }
            
            .scroll-top {
                left: 15px;
                bottom: 15px;
                width: 40px;
                height: 40px;
                font-size: 1em;
            }
            
            .football-animation {
                display: none;
            }
            
            .center-circle,
            .center-dot,
            .penalty-box {
                display: none;
            }
        }
        
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .page-title {
                font-size: 1.1em;
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }
            
            .league-header h5 {
                font-size: 0.95em;
            }
            
            .match-row {
                padding: 12px;
            }
            
            .team-logo {
                width: 22px;
                height: 22px;
            }
            
            .team-name {
                font-size: 0.95em;
            }
            
            .match-score {
                min-width: auto;
            }
            
            .score {
                font-size: 1.3em;
            }
            
            .status-badge {
                padding: 7px 15px;
                font-size: 0.85em;
            }
        }
        
        @media (max-width: 360px) {
            .stat-card {
                padding: 10px;
            }
            
            .stat-value {
                font-size: 1.3em;
            }
            
            .team-flag {
                font-size: 1em;
                width: 20px;
            }
            
            .team-logo {
                width: 20px;
                height: 20px;
            }
            
            .team-name {
                font-size: 0.9em;
            }
            
            .match-row {
                padding: 10px;
            }
            
            .match-time .time {
                font-size: 0.95em;
            }
            
            .match-time .stadium {
                font-size: 0.75em;
            }
        }
        
        @media (max-width: 320px) {
            .container {
                padding: 8px;
            }
            
            .page-header {
                padding: 12px;
            }
            
            .league-header {
                padding: 12px;
            }
            
            .matches-container {
                padding: 8px;
            }
            
            .match-row {
                padding: 8px;
            }
            
            .team-logo {
                width: 18px;
                height: 18px;
            }
            
            .view-btn {
                min-width: 70px;
                padding: 6px;
                font-size: 0.75em;
            }
        }