* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.5;
}

.dashboard {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    margin-left: 340px; /* 320px sidebar width + 20px gap */
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.header h1 {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toggle-sidebar-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: none; /* Hidden by default, shown on mobile */
}

.toggle-sidebar-btn:hover {
    background: #545b62;
    transform: translateY(-1px);
}

.toggle-sidebar-btn.active {
    background: #495057;
}

.share-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.share-btn:hover {
    background: #218838;
    transform: translateY(-1px);
}

.share-btn:active {
    background: #1e7e34;
    transform: translateY(0);
}

.refresh-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.refresh-btn:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

.refresh-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
    opacity: 0.6;
}

/* Main Layout - Two Column */
.main-layout {
    display: block;
    margin-left: 340px; /* 320px sidebar width + 20px gap */
    margin-top: 0; /* Start immediately after header */
}

/* Sidebar */
.sidebar {
    background: white;
    border-radius: 0;
    box-shadow: 2px 0 4px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
}

.sidebar-content {
    padding: 20px;
}

.sidebar-content h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.filter-section {
    margin-bottom: 30px;
}

.filter-section:last-child {
    margin-bottom: 0;
}

.filter-section h4 {
    color: #495057;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e9ecef;
}

/* Content Area */
.content {
    min-width: 0; /* Allow content to shrink */
}

/* Date Controls in Sidebar */
.date-controls {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
}

.date-presets {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.preset-btn {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
}

.preset-btn:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.preset-btn.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.preset-btn.custom.active {
    background: #28a745;
    border-color: #28a745;
}

.preset-btn:disabled {
    background: #f8f9fa;
    color: #6c757d;
    border-color: #dee2e6;
    cursor: not-allowed;
    opacity: 0.6;
}

.preset-btn:disabled:hover {
    background: #f8f9fa;
    border-color: #dee2e6;
    transform: none;
}

.custom-date-range {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #dee2e6;
}

.custom-date-range.active {
    display: flex;
}

.date-input-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.date-input-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
}

.date-input-group input {
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 0.9rem;
}

.apply-date-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.apply-date-btn:hover {
    background: #218838;
    transform: translateY(-1px);
}

.apply-date-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
    opacity: 0.6;
}

/* Filters in Sidebar */
.filters {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.filter-group label {
    font-weight: 500;
    color: #555;
    font-size: 0.9rem;
}

.filter-group input,
.filter-group select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: border-color 0.2s;
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.clear-btn {
    padding: 8px 16px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.2s;
    margin-top: 10px;
}

.clear-btn:hover {
    background: #c0392b;
}

/* Stats in Sidebar */
.stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 15px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

/* Chart Section */
.chart-section {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    overflow: hidden;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 0;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 20px;
}

.chart-header h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.chart-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.chart-type-selector {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    background: white;
    cursor: pointer;
    transition: border-color 0.2s;
}

.chart-type-selector:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.chart-container {
    padding: 0 24px 24px;
    height: 400px;
    position: relative;
}

.chart-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 8px;
}

.chart-loading.hidden {
    display: none;
}

.chart-loading-content {
    text-align: center;
    color: #495057;
}

.chart-loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e9ecef;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: chartSpinner 1s linear infinite;
    margin: 0 auto 12px;
}

@keyframes chartSpinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.chart-loading-text {
    font-size: 1rem;
    font-weight: 500;
    color: #6c757d;
}

.chart-empty {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-style: italic;
    font-size: 1.1rem;
}

/* Metrics Grid */
.metrics-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.table-wrapper {
    overflow-x: auto;
    max-height: 80vh;
}

.metrics-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.metrics-table thead {
    background: #f8f9fa;
    position: sticky;
    top: 0;
    z-index: 10;
}

.metrics-table th {
    padding: 12px 8px;
    text-align: left;
    font-weight: 600;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
    white-space: nowrap;
    position: relative;
}

.metrics-table th.sortable {
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s;
}

.metrics-table th.sortable:hover {
    background: #e9ecef;
}

.metrics-table th.sortable::after {
    content: '↕';
    margin-left: 8px;
    opacity: 0.5;
    font-size: 0.8em;
}

.metrics-table th.sortable.asc::after {
    content: '↑';
    opacity: 1;
    color: #007bff;
}

.metrics-table th.sortable.desc::after {
    content: '↓';
    opacity: 1;
    color: #007bff;
}

.metrics-table tbody tr {
    border-bottom: 1px solid #dee2e6;
    transition: all 0.15s ease;
    cursor: pointer;
}

.metrics-table tbody tr:hover {
    background: #e3f2fd !important;
    transform: translateX(2px);
}

.metrics-table tbody tr:nth-child(even) {
    background: #fdfdfd;
}

.metrics-table tbody tr:nth-child(even):hover {
    background: #f1f3f4;
}

.metrics-table td {
    padding: 12px 8px;
    vertical-align: middle;
    border-bottom: 1px solid #f1f3f4;
}

.function-name {
    font-weight: 600;
    color: #2c3e50;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
}

.status-badge.active {
    background: #d4edda;
    color: #155724;
}

.status-badge.inactive {
    background: #f8d7da;
    color: #721c24;
}

.metric-tag {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 4px;
}

.metric-tag.network {
    background: #f0f9ff;
    color: #0369a1;
}

.metric-tag.product {
    background: #f7fee7;
    color: #365314;
}

.metric-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.metric-tag.network:hover {
    background: #dbeafe;
    color: #1e40af;
}

.metric-tag.product:hover {
    background: #ecfccb;
    color: #166534;
}

.numeric-value {
    text-align: right;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-weight: 500;
}

.function-id {
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 0.8rem;
    color: #6c757d;
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
}

.percentage {
    color: #28a745;
    font-weight: 600;
}

.percentage.low {
    color: #dc3545;
}

.percentage.medium {
    color: #ffc107;
}

.response-time {
    color: #6c757d;
}

.last-execution {
    color: #6c757d;
    font-size: 0.85rem;
}

.description-cell {
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-style: italic;
    color: #6c757d;
    font-size: 0.85rem;
}

/* States */
.loading, .error, .empty {
    text-align: center;
    padding: 40px;
    font-size: 1.1rem;
    color: #666;
}

.loading {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    margin: 20px 0;
}

.loading::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #3498db;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-right: 10px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.error {
    color: #e74c3c;
}

.hidden {
    display: none;
}

/* Performance optimizations */
.table-wrapper {
    contain: layout style;
}

.metrics-table tbody tr {
    will-change: background-color;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.modal.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    max-height: 90vh;
    width: 100%;
    overflow: hidden;
    animation: slideIn 0.3s ease;
    display: flex;
    flex-direction: column;
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.modal-header h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-btn:hover {
    background: #e9ecef;
    color: #495057;
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.function-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.summary-item .label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-item .value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.error-count {
    color: #dc3545 !important;
}

.function-id-modal {
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 0.9rem !important;
    color: #6c757d !important;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
    word-break: break-all;
}

.errors-section h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.error-badge {
    background: #dc3545;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.errors-list {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.error-item {
    padding: 16px;
    border-bottom: 1px solid #f1f3f4;
    transition: background-color 0.2s ease;
}

.error-item:last-child {
    border-bottom: none;
}

.error-item:hover {
    background: #f8f9fa;
}

.error-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.error-message {
    font-weight: 600;
    color: #dc3545;
    font-size: 0.95rem;
    flex: 1;
    margin-right: 12px;
}

.error-timestamp {
    font-size: 0.85rem;
    color: #6c757d;
    white-space: nowrap;
}

.error-details {
    margin-top: 12px;
}

.error-execution-id {
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 0.8rem;
    color: #6c757d;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    display: inline-block;
}

.error-stack {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 12px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 0.8rem;
    color: #495057;
    white-space: pre-wrap;
    overflow-x: auto;
    max-height: 150px;
    overflow-y: auto;
}

.no-errors {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
    font-style: italic;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: #f8f9fa;
}

.loading-errors {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
    font-style: italic;
}

.loading-errors::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #3498db;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

.error-loading {
    text-align: center;
    padding: 40px 20px;
    color: #dc3545;
    font-weight: 500;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.refresh-errors-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.refresh-errors-btn:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

.close-modal-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.close-modal-btn:hover {
    background: #545b62;
    transform: translateY(-1px);
}

/* Clickable row styling is defined above in the table styles */

/* Mobile responsiveness */
@media (max-width: 1024px) {
    .sidebar {
        width: 280px;
        top: 0;
        height: 100vh;
    }
    
    .header {
        margin-left: 300px; /* 280px sidebar width + 20px gap */
    }
    
    .main-layout {
        margin-left: 300px; /* 280px sidebar width + 20px gap */
    }
}

@media (max-width: 768px) {
    .dashboard {
        padding: 15px;
    }

    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-left: 0; /* Reset margin on mobile */
    }

    .header h1 {
        font-size: 1.5rem;
    }

    .header-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .toggle-sidebar-btn {
        display: inline-block;
    }

    .main-layout {
        margin-left: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .sidebar {
        position: fixed;
        width: 100%;
        height: 100vh;
        left: 0;
        top: 0;
        order: 2;
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        background: white;
    }

    .sidebar.mobile-open {
        transform: translateX(0);
    }

    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: none;
    }

    .sidebar-overlay.active {
        display: block;
    }

    .content {
        order: 1;
    }

    .sidebar-content {
        padding: 15px;
    }

    .sidebar-content h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .filter-section h4 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .filter-section {
        margin-bottom: 20px;
    }

    .date-presets {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-card {
        padding: 12px;
    }

    .stat-value {
        font-size: 1rem;
    }

    .chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px 20px 0;
    }

    .chart-container {
        height: 300px;
        padding: 0 20px 20px;
    }

    .metrics-table {
        font-size: 0.8rem;
    }
    
    .metrics-table th,
    .metrics-table td {
        padding: 8px 4px;
    }
    
    .function-name {
        max-width: 120px;
    }
    
         /* Hide less important columns on mobile */
     .metrics-table th:nth-child(8), /* Avg Response */
     .metrics-table td:nth-child(8) {
         display: none;
     }

    .modal {
        padding: 10px;
    }
    
    .modal-content {
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 16px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .function-summary {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }
    
    .modal-footer {
        padding: 12px 20px;
        flex-direction: column;
        gap: 10px;
    }
    
    .refresh-errors-btn,
    .close-modal-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .dashboard {
        padding: 10px;
    }

    .header h1 {
        font-size: 1.3rem;
    }

    .date-presets {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .chart-container {
        height: 250px;
        padding: 0 15px 15px;
    }
    
    .chart-header {
        padding: 15px;
    }

    .metrics-table {
        font-size: 0.75rem;
    }
    
         /* Hide even more columns on very small screens */
     .metrics-table th:nth-child(7), /* Uptime */
     .metrics-table td:nth-child(7),
     .metrics-table th:nth-child(9) /* Last Execution */,
     .metrics-table td:nth-child(9) {
         display: none;
     }
    
    .function-name {
        max-width: 100px;
    }

    .sidebar-content {
        padding: 12px;
    }

    .filter-section {
        margin-bottom: 15px;
    }
}

/* Network badge styling */
.network-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(46, 204, 113, 0.3);
    vertical-align: middle;
    transition: all 0.2s ease;
}

.network-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.4);
} 