/* Main Container */
.vg-1x2-evolution-container {
    max-width: 1800px;
    margin: 20px auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Header */
.vg-1x2-evolution-header {
    background: linear-gradient(135deg, #2c3e50 0%, #4a6491 100%);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    color: white;
    text-align: center;
}

.vg-1x2-evolution-header h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.vg-1x2-evolution-subtitle {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
    font-weight: 300;
}

/* Controls */
.vg-1x2-evolution-controls {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #e1e8ed;
}

.vg-1x2-evolution-control-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.vg-1x2-evolution-search {
    flex: 1;
    display: flex;
    gap: 10px;
    min-width: 300px;
}

.vg-1x2-evolution-search-input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #4a6491;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    min-width: 200px;
}

.vg-1x2-evolution-search-input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.vg-1x2-evolution-button {
    padding: 12px 24px;
    background: linear-gradient(135deg, #4a6491 0%, #3498db 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(74, 100, 145, 0.2);
    white-space: nowrap;
}

.vg-1x2-evolution-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(74, 100, 145, 0.3);
    background: linear-gradient(135deg, #3498db 0%, #4a6491 100%);
}

.vg-1x2-evolution-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.vg-1x2-evolution-button-icon {
    font-size: 18px;
}

.vg-1x2-evolution-total-info {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #e3f2fd;
    padding: 10px 15px;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
    white-space: nowrap;
}

.vg-1x2-evolution-total-icon {
    font-size: 20px;
}

.vg-1x2-evolution-total-text {
    font-size: 14px;
    color: #2c3e50;
}

.vg-1x2-evolution-total-text strong {
    color: #2196f3;
}

/* Loading State */
.vg-1x2-evolution-loading {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.vg-1x2-evolution-loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: vg-spin 1s linear infinite;
    margin: 0 auto 20px auto;
}

@keyframes vg-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.vg-1x2-evolution-loading p {
    margin: 0;
    color: #666;
    font-size: 16px;
}

/* Table Container */
.vg-1x2-evolution-table-container {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow-x: auto;
    min-height: 200px;
}

/* Table */
.vg-1x2-evolution-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1200px;
}

.vg-1x2-evolution-table th {
    background: #f8f9fa;
    padding: 18px 15px;
    text-align: center;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 3px solid #dee2e6;
    font-size: 14px;
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 10;
    cursor: pointer;
    user-select: none;
}

.vg-1x2-evolution-sortable {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.vg-1x2-evolution-sort-icon {
    font-size: 14px;
    opacity: 0.6;
}

.vg-1x2-evolution-sortable.sorted-asc .vg-1x2-evolution-sort-icon::after {
    content: "↑";
    margin-left: 5px;
}

.vg-1x2-evolution-sortable.sorted-desc .vg-1x2-evolution-sort-icon::after {
    content: "↓";
    margin-left: 5px;
}

.vg-1x2-evolution-table td {
    padding: 16px 15px;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
    transition: all 0.2s ease;
}

.vg-1x2-evolution-table tbody tr {
    transition: all 0.3s ease;
}

.vg-1x2-evolution-table tbody tr:hover {
    background-color: #f8f9fa !important;
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.vg-1x2-evolution-table tbody tr.vg-1x2-evolution-balanced {
    background-color: rgba(111, 66, 193, 0.08);
}

.vg-1x2-evolution-table tbody tr.vg-1x2-evolution-favorite-1 {
    background-color: rgba(40, 167, 69, 0.08);
}

.vg-1x2-evolution-table tbody tr.vg-1x2-evolution-favorite-2 {
    background-color: rgba(220, 53, 69, 0.08);
}

.vg-1x2-evolution-table tbody tr:last-child td {
    border-bottom: none;
}

.vg-1x2-evolution-row-even {
    background-color: #ffffff;
}

.vg-1x2-evolution-row-odd {
    background-color: #fafafa;
}

/* Depth Column */
.vg-1x2-evolution-td-depth {
    text-align: center;
}

.vg-1x2-evolution-depth-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #dee2e6;
    min-width: 80px;
}

.vg-1x2-evolution-depth-number {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.vg-1x2-evolution-depth-label {
    font-size: 11px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
}

/* Code Column */
.vg-1x2-evolution-td-code {
    text-align: center;
}

.vg-1x2-evolution-code-box {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #dee2e6;
    min-width: 70px;
    display: inline-block;
}

/* Count Columns */
.vg-1x2-evolution-td-count {
    font-size: 18px;
    font-weight: 700;
    padding: 12px 8px;
}

.vg-1x2-evolution-count-1 {
    color: #28a745;
}

.vg-1x2-evolution-count-X {
    color: #ffc107;
}

.vg-1x2-evolution-count-2 {
    color: #dc3545;
}

/* Percent Columns */
.vg-1x2-evolution-td-percent {
    min-width: 100px;
    padding: 12px 8px;
}

.vg-1x2-evolution-percent-box {
    position: relative;
    padding: 8px 12px;
    border-radius: 6px;
    overflow: hidden;
    font-weight: 600;
    z-index: 1;
}

.vg-1x2-evolution-percent-1 .vg-1x2-evolution-percent-box {
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

.vg-1x2-evolution-percent-X .vg-1x2-evolution-percent-box {
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
}

.vg-1x2-evolution-percent-2 .vg-1x2-evolution-percent-box {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.vg-1x2-evolution-percent-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0.2;
    z-index: -1;
    transition: width 0.5s ease;
}

.vg-1x2-evolution-percent-1 .vg-1x2-evolution-percent-bar {
    background: #28a745;
}

.vg-1x2-evolution-percent-X .vg-1x2-evolution-percent-bar {
    background: #ffc107;
}

.vg-1x2-evolution-percent-2 .vg-1x2-evolution-percent-bar {
    background: #dc3545;
}

/* Total Column */
.vg-1x2-evolution-td-total {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #dee2e6;
    min-width: 80px;
}

/* Percentages Column */
.vg-1x2-evolution-td-percentages {
    min-width: 150px;
}

.vg-1x2-evolution-percentages-display {
    display: flex;
    justify-content: space-around;
    gap: 5px;
}

.vg-1x2-evolution-percentage {
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    min-width: 45px;
    text-align: center;
    transition: all 0.2s ease;
}

.vg-1x2-evolution-perc-1 {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.vg-1x2-evolution-perc-X {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.vg-1x2-evolution-perc-2 {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Empty State */
.vg-1x2-evolution-empty-state {
    text-align: center;
    padding: 40px;
    color: #666;
}

.vg-1x2-evolution-empty-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
    opacity: 0.5;
}

.vg-1x2-evolution-empty-hint {
    font-size: 14px;
    color: #4a6491;
    font-style: italic;
    margin-top: 10px;
}

/* Summary */
.vg-1x2-evolution-summary {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.vg-1x2-evolution-summary h3 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
}

.vg-1x2-evolution-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.vg-1x2-evolution-summary-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s ease;
    height: 100%;
}

.vg-1x2-evolution-summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.vg-1x2-evolution-summary-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.vg-1x2-evolution-summary-overview {
    background: linear-gradient(135deg, #4a6491 0%, #3498db 100%);
    color: white;
}

.vg-1x2-evolution-summary-current {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.vg-1x2-evolution-summary-trend {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: white;
}

.vg-1x2-evolution-summary-tendency {
    background: linear-gradient(135deg, #6f42c1 0%, #9c27b0 100%);
    color: white;
}

.vg-1x2-evolution-summary-content {
    flex: 1;
}

.vg-1x2-evolution-summary-content h4 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
}

.vg-1x2-evolution-summary-content p {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.vg-1x2-evolution-summary-content strong {
    color: #4a6491;
}

/* Charts */
.vg-1x2-evolution-charts {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.vg-1x2-evolution-chart-full {
    margin-bottom: 40px;
}

.vg-1x2-evolution-chart-full:last-child {
    margin-bottom: 0;
}

.vg-1x2-evolution-chart-full h4 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vg-1x2-evolution-chart-icon {
    font-size: 20px;
}

.vg-1x2-evolution-chart-wrapper {
    width: 100%;
    height: 400px;
    position: relative;
}

.vg-1x2-evolution-chart-full:last-child .vg-1x2-evolution-chart-wrapper {
    height: 300px;
}

/* Analysis Section */
.vg-1x2-evolution-analysis {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.vg-1x2-evolution-analysis h3 {
    margin: 0 0 25px 0;
    color: #2c3e50;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vg-1x2-evolution-analysis-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

@media (max-width: 1200px) {
    .vg-1x2-evolution-analysis-content {
        grid-template-columns: 1fr;
    }
}

.vg-1x2-evolution-analysis-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.vg-1x2-evolution-analysis-section h4 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vg-1x2-evolution-analysis-icon {
    font-size: 22px;
}

/* Trend Analysis */
.vg-1x2-evolution-trend-analysis {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vg-1x2-evolution-trend-item {
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.vg-1x2-evolution-trend-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    font-weight: 600;
    color: white;
    gap: 10px;
}

.vg-1x2-evolution-trend-1 {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.vg-1x2-evolution-trend-X {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
}

.vg-1x2-evolution-trend-2 {
    background: linear-gradient(135deg, #dc3545 0%, #e91e63 100%);
}

.vg-1x2-evolution-trend-icon {
    font-size: 20px;
}

.vg-1x2-evolution-trend-header h5 {
    margin: 0;
    font-size: 16px;
    flex: 1;
}

.vg-1x2-evolution-trend-current {
    font-size: 20px;
    font-weight: 700;
}

.vg-1x2-evolution-trend-content {
    padding: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.vg-1x2-evolution-trend-content p {
    margin: 8px 0;
}

.vg-1x2-evolution-trend-content strong {
    color: #2c3e50;
}

/* Prediction */
.vg-1x2-evolution-prediction-card {
    background: white;
    border-radius: 10px;
    border: 2px solid #4a6491;
    overflow: hidden;
}

.vg-1x2-evolution-prediction-header {
    background: linear-gradient(135deg, #4a6491 0%, #3498db 100%);
    padding: 20px;
    text-align: center;
    color: white;
}

.vg-1x2-evolution-prediction-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 10px;
}

.vg-1x2-evolution-prediction-header h5 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
}

.vg-1x2-evolution-prediction-label {
    font-size: 14px;
    opacity: 0.9;
}

.vg-1x2-evolution-prediction-details {
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

@media (max-width: 768px) {
    .vg-1x2-evolution-prediction-details {
        grid-template-columns: 1fr;
    }
}

.vg-1x2-evolution-prediction-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.vg-1x2-evolution-prediction-1 {
    border-left: 4px solid #28a745;
}

.vg-1x2-evolution-prediction-X {
    border-left: 4px solid #ffc107;
}

.vg-1x2-evolution-prediction-2 {
    border-left: 4px solid #dc3545;
}

.vg-1x2-evolution-prediction-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.vg-1x2-evolution-prediction-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.vg-1x2-evolution-prediction-1 .vg-1x2-evolution-prediction-value {
    color: #28a745;
}

.vg-1x2-evolution-prediction-X .vg-1x2-evolution-prediction-value {
    color: #ffc107;
}

.vg-1x2-evolution-prediction-2 .vg-1x2-evolution-prediction-value {
    color: #dc3545;
}

.vg-1x2-evolution-prediction-change {
    display: block;
    font-size: 13px;
    color: #666;
}

.vg-1x2-evolution-prediction-note {
    padding: 20px;
    background: #e3f2fd;
    border-top: 1px solid #bbdefb;
    text-align: center;
}

.vg-1x2-evolution-prediction-note p {
    margin: 0;
    font-size: 15px;
    color: #2c3e50;
}

.vg-1x2-evolution-prediction-note strong {
    color: #4a6491;
}

/* Conclusions */
.vg-1x2-evolution-conclusions-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vg-1x2-evolution-conclusion-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid #4a6491;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.vg-1x2-evolution-tendency-balanced {
    border-left-color: #6f42c1;
}

.vg-1x2-evolution-tendency-1 {
    border-left-color: #28a745;
}

.vg-1x2-evolution-tendency-X {
    border-left-color: #ffc107;
}

.vg-1x2-evolution-tendency-2 {
    border-left-color: #dc3545;
}

.vg-1x2-evolution-conclusion-icon {
    font-size: 24px;
    color: #4a6491;
    flex-shrink: 0;
}

.vg-1x2-evolution-conclusion-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #2c3e50;
}

.vg-1x2-evolution-conclusion-item strong {
    color: #4a6491;
}

/* Export */
.vg-1x2-evolution-export {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.vg-1x2-evolution-export-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid #4a6491;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #4a6491;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 150px;
    justify-content: center;
}

.vg-1x2-evolution-export-btn:hover {
    background: #4a6491;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(74, 100, 145, 0.3);
}

.vg-1x2-evolution-export-icon {
    font-size: 18px;
}

/* Footer */
.vg-1x2-evolution-footer {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 14px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Responsive */
@media (max-width: 1400px) {
    .vg-1x2-evolution-container {
        padding: 15px;
    }
    
    .vg-1x2-evolution-table-container {
        overflow-x: auto;
    }
    
    .vg-1x2-evolution-chart-wrapper {
        height: 350px;
    }
}

@media (max-width: 1200px) {
    .vg-1x2-evolution-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vg-1x2-evolution-chart-wrapper {
        height: 300px;
    }
}

@media (max-width: 992px) {
    .vg-1x2-evolution-control-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .vg-1x2-evolution-search {
        flex-direction: column;
    }
    
    .vg-1x2-evolution-total-info {
        margin-left: 0;
        justify-content: center;
    }
    
    .vg-1x2-evolution-summary-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vg-1x2-evolution-container {
        padding: 10px;
    }
    
    .vg-1x2-evolution-header {
        padding: 20px;
    }
    
    .vg-1x2-evolution-header h2 {
        font-size: 22px;
    }
    
    .vg-1x2-evolution-controls,
    .vg-1x2-evolution-table-container,
    .vg-1x2-evolution-charts,
    .vg-1x2-evolution-summary,
    .vg-1x2-evolution-analysis {
        padding: 15px;
    }
    
    .vg-1x2-evolution-table th,
    .vg-1x2-evolution-table td {
        padding: 12px 10px;
        font-size: 13px;
    }
    
    .vg-1x2-evolution-code-box {
        font-size: 16px;
        min-width: 60px;
        padding: 8px;
    }
    
    .vg-1x2-evolution-depth-box {
        min-width: 60px;
        padding: 8px;
    }
    
    .vg-1x2-evolution-depth-number {
        font-size: 16px;
    }
    
    .vg-1x2-evolution-td-count {
        font-size: 16px;
    }
    
    .vg-1x2-evolution-td-total {
        font-size: 16px;
        min-width: 60px;
    }
    
    .vg-1x2-evolution-export-btn {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 140px;
    }
    
    .vg-1x2-evolution-chart-wrapper {
        height: 250px;
    }
    
    .vg-1x2-evolution-analysis-section {
        padding: 20px;
    }
    
    .vg-1x2-evolution-analysis-content {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .vg-1x2-evolution-header h2 {
        font-size: 20px;
    }
    
    .vg-1x2-evolution-subtitle {
        font-size: 14px;
    }
    
    .vg-1x2-evolution-table th,
    .vg-1x2-evolution-table td {
        padding: 10px 8px;
        font-size: 12px;
    }
    
    .vg-1x2-evolution-depth-box {
        min-width: 50px;
        padding: 6px;
    }
    
    .vg-1x2-evolution-depth-number {
        font-size: 14px;
    }
    
    .vg-1x2-evolution-depth-label {
        font-size: 9px;
    }
    
    .vg-1x2-evolution-code-box {
        font-size: 14px;
        min-width: 50px;
        padding: 6px;
    }
    
    .vg-1x2-evolution-percentages-display {
        flex-direction: column;
        gap: 3px;
    }
    
    .vg-1x2-evolution-percentage {
        font-size: 11px;
        padding: 4px 6px;
        min-width: 40px;
    }
    
    .vg-1x2-evolution-chart-wrapper {
        height: 200px;
    }
    
    .vg-1x2-evolution-prediction-details {
        grid-template-columns: 1fr;
    }
    
    .vg-1x2-evolution-trend-header {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}