/* Main Container */
.vg-exact-predictor-container {
    max-width: 1400px;
    margin: 20px auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
}

/* Header */
.vg-exact-predictor-header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    color: white;
    text-align: center;
}

.vg-exact-predictor-header h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.vg-exact-predictor-subtitle {
    margin: 0;
    font-size: 18px;
    opacity: 0.9;
    font-weight: 300;
}

/* Error Messages */
.vg-exact-predictor-error {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 5px solid #ff3838;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
}

.vg-exact-predictor-error p {
    margin: 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.vg-exact-predictor-form-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: end;
}

@media (max-width: 768px) {
    .vg-exact-predictor-form-row {
        grid-template-columns: 1fr;
    }
}

.vg-exact-predictor-form-group {
    flex: 1;
}

.vg-exact-predictor-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.vg-exact-predictor-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 15px;
    background: white;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.vg-exact-predictor-input:focus {
    outline: none;
    border-color: #2ecc71;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

.vg-exact-predictor-hint {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #7f8c8d;
}

.vg-exact-predictor-button {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.vg-exact-predictor-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(46, 204, 113, 0.3);
}

.vg-exact-predictor-form-info {
    margin-top: 15px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.vg-exact-predictor-form-info p {
    margin: 0;
    font-size: 14px;
    color: #2c3e50;
}

/* Stats Grid */
.vg-exact-predictor-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.vg-exact-predictor-stat-card {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f2f6;
}

.vg-exact-predictor-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.vg-exact-predictor-stat-icon {
    font-size: 36px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    flex-shrink: 0;
}

.vg-exact-predictor-stat-content {
    flex: 1;
}

.vg-exact-predictor-stat-value {
    font-size: 32px;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 5px;
}

.vg-exact-predictor-stat-label {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Current Pattern */
.vg-exact-predictor-current-pattern {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e1e8ed;
    position: relative;
    overflow: hidden;
}

.vg-exact-predictor-current-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #3498db, #2ecc71);
}

.vg-exact-predictor-current-pattern h3 {
    margin: 0 0 25px 0;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vg-exact-predictor-pattern-display {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.vg-exact-predictor-pattern-item {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 24px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.vg-exact-predictor-pattern-item:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.vg-exact-predictor-pattern-position {
    position: absolute;
    bottom: 5px;
    font-size: 11px;
    opacity: 0.8;
    font-weight: 600;
}

.vg-exact-predictor-pattern-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.vg-exact-predictor-pattern-info p {
    margin: 0;
    font-size: 14px;
    color: #495057;
}

.vg-exact-predictor-pattern-info code {
    background: #2c3e50;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 16px;
}

/* Κατεύθυνση Pattern */
.vg-exact-predictor-pattern-direction {
    margin-top: 10px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #3498db;
}

/* Multi Predictions Grid */
.vg-exact-predictor-multi-predictions {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e1e8ed;
}

.vg-exact-predictor-multi-predictions h3 {
    margin: 0 0 25px 0;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vg-exact-predictor-multi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .vg-exact-predictor-multi-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

/* Multi Prediction Card */
.vg-exact-predictor-multi-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.vg-exact-predictor-multi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.vg-exact-predictor-multi-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-bottom: 1px solid #dee2e6;
}

.vg-exact-predictor-multi-header h4 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Pattern Containers */
.vg-exact-predictor-multi-pattern-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.vg-exact-predictor-multi-pattern-small {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    flex-wrap: wrap;
}

.vg-exact-predictor-multi-pattern-item-wrapper,
.vg-exact-predictor-summary-pattern-item-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.vg-exact-predictor-multi-pattern-item {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid;
}

.vg-exact-predictor-multi-pattern-position,
.vg-exact-predictor-summary-pattern-position {
    font-size: 9px;
    color: #7f8c8d;
    font-weight: 600;
}

.vg-exact-predictor-multi-pattern-direction {
    margin-top: 5px;
    font-size: 11px;
    color: #7f8c8d;
    text-align: center;
}

.vg-exact-predictor-multi-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Confidence in Card */
.vg-exact-predictor-multi-confidence {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vg-exact-predictor-multi-confidence-label {
    font-size: 14px;
    color: #2c3e50;
    font-weight: 600;
}

.vg-exact-predictor-multi-confidence-bar {
    height: 10px;
    background: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.vg-exact-predictor-multi-confidence-fill {
    height: 100%;
    background: linear-gradient(90deg, #2ecc71, #3498db);
    border-radius: 5px;
    transition: width 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vg-exact-predictor-multi-confidence-percent {
    color: white;
    font-weight: 700;
    font-size: 10px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Stats in Card */
.vg-exact-predictor-multi-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.vg-exact-predictor-multi-stat {
    text-align: center;
    padding: 10px 5px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.vg-exact-predictor-multi-stat-value {
    font-size: 16px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 3px;
}

.vg-exact-predictor-multi-stat-label {
    font-size: 11px;
    color: #7f8c8d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Details Button */
.vg-exact-predictor-multi-details {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.vg-exact-predictor-multi-details-btn {
    width: 100%;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.vg-exact-predictor-multi-details-btn:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f639e 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
}

/* Status Indicator */
.vg-exact-predictor-multi-status {
    padding: 12px 20px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.vg-exact-predictor-status-good {
    color: #27ae60;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vg-exact-predictor-status-warning {
    color: #e67e22;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Προβλεπόμενο αποτέλεσμα (γκρι) */
.vg-exact-predictor-prediction-next {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%) !important;
    color: white !important;
    border-color: #616a6b !important;
    opacity: 0.9 !important;
    position: relative !important;
}

/* Βέλος μεταξύ pattern και προβλεπόμενου */
.vg-exact-predictor-pattern-arrow {
    margin: 0 5px;
    color: #7f8c8d;
    font-weight: bold;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
}

/* Result Colors */
.vg-exact-predictor-result-1 {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    border-color: #219653;
}

.vg-exact-predictor-result-X {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    border-color: #d68910;
}

.vg-exact-predictor-result-2 {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border-color: #b03a2e;
}

.vg-exact-predictor-result-na {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    color: white;
    border-color: #616a6b;
}

/* Summary Table */
.vg-exact-predictor-summary {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
    border: 1px solid #e9ecef;
}

.vg-exact-predictor-summary h4 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
}

.vg-exact-predictor-summary-table-container {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.vg-exact-predictor-summary-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1000px;
}

.vg-exact-predictor-summary-table th {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 15px 12px;
    text-align: center;
    font-weight: 600;
    color: white;
    font-size: 13px;
    white-space: nowrap;
    border: none;
}

.vg-exact-predictor-summary-table td {
    padding: 12px;
    border-bottom: 1px solid #e9ecef;
    font-size: 13px;
    text-align: center;
    vertical-align: middle;
    background: white;
}

.vg-exact-predictor-summary-table tbody tr:hover {
    background-color: #f8f9fa;
}

.vg-exact-predictor-summary-table tbody tr:nth-child(even) {
    background-color: #fcfcfc;
}

/* Summary Table Cells */
.vg-exact-predictor-summary-length {
    font-weight: 700;
    color: #2c3e50;
}

.vg-exact-predictor-summary-pattern {
    text-align: center;
}

.vg-exact-predictor-summary-pattern-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    flex-wrap: wrap;
}

.vg-exact-predictor-summary-pattern-item {
    width: 25px;
    height: 25px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    border: 2px solid;
}

/* Βέλος στον πίνακα */
.vg-exact-predictor-summary-arrow {
    margin: 0 3px;
    color: #7f8c8d;
    font-weight: bold;
    font-size: 12px;
    display: inline-block;
    vertical-align: middle;
}

.vg-exact-predictor-summary-confidence {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vg-exact-predictor-summary-confidence-bar {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.vg-exact-predictor-summary-confidence-fill {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.vg-exact-predictor-summary-confidence-value {
    font-size: 12px;
    font-weight: 600;
    color: #2c3e50;
    min-width: 40px;
    text-align: right;
}

.vg-exact-predictor-summary-count {
    font-weight: 700;
    color: #2c3e50;
}

.vg-exact-predictor-summary-prob {
    text-align: center;
}

.vg-exact-predictor-summary-prob-value {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    background: #f8f9fa;
    color: #495057;
    min-width: 45px;
}

.vg-exact-predictor-summary-prob-value.high {
    background: #2ecc71;
    color: white;
}

.vg-exact-predictor-summary-status {
    text-align: center;
}

.vg-exact-predictor-summary-direction {
    margin-top: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    text-align: center;
}

/* Recommendations */
.vg-exact-predictor-recommendations {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-top: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e1e8ed;
    border-left: 5px solid #3498db;
}

.vg-exact-predictor-recommendations h4 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vg-exact-predictor-recommendations-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vg-exact-predictor-recommendation {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.vg-exact-predictor-recommendation:hover {
    transform: translateX(5px);
}

.vg-exact-predictor-recommendation.success {
    border-left: 4px solid #2ecc71;
    background: linear-gradient(135deg, #f8fff9 0%, #f1f8f2 100%);
}

.vg-exact-predictor-recommendation.info {
    border-left: 4px solid #3498db;
    background: linear-gradient(135deg, #f8faff 0%, #f1f5f8 100%);
}

.vg-exact-predictor-recommendation.warning {
    border-left: 4px solid #f39c12;
    background: linear-gradient(135deg, #fffbf8 0%, #f8f5f1 100%);
}

.vg-exact-predictor-recommendation.tip {
    border-left: 4px solid #9b59b6;
    background: linear-gradient(135deg, #faf8ff 0%, #f5f1f8 100%);
}

.vg-exact-predictor-recommendation-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: white;
    flex-shrink: 0;
}

.vg-exact-predictor-recommendation-content {
    flex: 1;
}

.vg-exact-predictor-recommendation-content h5 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
}

.vg-exact-predictor-recommendation-content p {
    margin: 0;
    font-size: 14px;
    color: #495057;
    line-height: 1.5;
}

/* Detailed Analysis */
.vg-exact-predictor-detailed-analysis {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e1e8ed;
}

.vg-exact-predictor-detailed-analysis h3 {
    margin: 0 0 25px 0;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vg-exact-predictor-detailed-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.vg-exact-predictor-tab-btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vg-exact-predictor-tab-btn:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.vg-exact-predictor-tab-btn.active {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border-color: #2980b9;
}

.vg-exact-predictor-tab-content {
    min-height: 200px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.vg-exact-predictor-tab-default {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
    color: #6c757d;
    font-size: 16px;
}

.vg-exact-predictor-tab-default p {
    margin: 10px 0 0 0;
    text-align: center;
}

/* Δημιουργία νέων styles για την λεπτομερή ανάλυση */
.vg-exact-predictor-detailed-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dee2e6;
}

.vg-exact-predictor-detailed-header h4 {
    margin: 0 0 15px 0;
    color: #2c3e50;
}

.vg-exact-predictor-detailed-pattern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.vg-exact-predictor-detailed-pattern-item {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid;
}

.vg-exact-predictor-detailed-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.vg-exact-predictor-detailed-stat {
    text-align: center;
    padding: 15px 10px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.vg-exact-predictor-detailed-stat-value {
    font-size: 24px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 5px;
}

.vg-exact-predictor-detailed-stat-label {
    font-size: 12px;
    color: #7f8c8d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vg-exact-predictor-detailed-distribution {
    margin-bottom: 25px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.vg-exact-predictor-detailed-distribution h5 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 16px;
}

.vg-exact-predictor-detailed-dist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.vg-exact-predictor-detailed-dist-result {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid;
    flex-shrink: 0;
}

.vg-exact-predictor-detailed-dist-bar {
    flex: 1;
    height: 20px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.vg-exact-predictor-detailed-dist-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vg-exact-predictor-detailed-dist-count {
    color: white;
    font-weight: 700;
    font-size: 10px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.vg-exact-predictor-detailed-dist-percent {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    min-width: 40px;
    text-align: right;
}

.vg-exact-predictor-detailed-patterns-list {
    margin-bottom: 25px;
}

.vg-exact-predictor-detailed-patterns-list h5 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 16px;
}

.vg-exact-predictor-detailed-table-container {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.vg-exact-predictor-detailed-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.vg-exact-predictor-detailed-table th {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 12px 10px;
    text-align: center;
    font-weight: 600;
    color: white;
    font-size: 12px;
    white-space: nowrap;
    border: none;
}

.vg-exact-predictor-detailed-table td {
    padding: 10px;
    border-bottom: 1px solid #e9ecef;
    font-size: 12px;
    text-align: center;
    vertical-align: middle;
    background: white;
}

.vg-exact-predictor-detailed-table tbody tr:hover {
    background-color: #f8f9fa;
}

.vg-exact-predictor-detailed-table tbody tr:nth-child(even) {
    background-color: #fcfcfc;
}

.vg-exact-predictor-detailed-table-pattern-item {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 11px;
    border: 1px solid;
    margin: 1px;
}

.vg-exact-predictor-detailed-table-next {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    border: 2px solid;
}

.vg-exact-predictor-detailed-summary {
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    border-left: 4px solid #3498db;
}

.vg-exact-predictor-detailed-summary h5 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 16px;
}

.vg-exact-predictor-detailed-summary-content p {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #495057;
}

.vg-exact-predictor-detailed-summary-content p strong {
    color: #2c3e50;
}

/* No Predictions */
.vg-exact-predictor-no-predictions {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px dashed #dee2e6;
}

.vg-exact-predictor-no-predictions-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.vg-exact-predictor-no-predictions h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.vg-exact-predictor-no-predictions p {
    color: #666;
    max-width: 400px;
    margin: 0 auto;
}

/* Instructions */
.vg-exact-predictor-instructions {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #dee2e6;
    margin-top: 30px;
}

.vg-exact-predictor-instructions h3 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vg-exact-predictor-instructions-content {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.vg-exact-predictor-instructions-content ol {
    margin: 0 0 25px 0;
    padding-left: 20px;
}

.vg-exact-predictor-instructions-content li {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 15px;
    color: #495057;
}

.vg-exact-predictor-instructions-content li strong {
    color: #2c3e50;
}

.vg-exact-predictor-instructions-content li:last-child {
    margin-bottom: 0;
}

.vg-exact-predictor-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    border-radius: 6px;
    margin: 0;
    font-size: 14px;
    color: #856404;
}

/* Loading Spinner */
.vg-exact-predictor-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: vg-exact-predictor-spin 1s linear infinite;
    margin-right: 10px;
}

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

/* Προσθήκη tooltip για το προβλεπόμενο */
.vg-exact-predictor-prediction-next:hover::after {
    content: "Προβλεπόμενο επόμενο αποτέλεσμα";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #2c3e50;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 10;
    margin-bottom: 5px;
}

.vg-exact-predictor-prediction-next:hover::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #2c3e50;
    margin-bottom: -5px;
    z-index: 10;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .vg-exact-predictor-container {
        padding: 15px;
    }
}

@media (max-width: 992px) {
    .vg-exact-predictor-multi-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .vg-exact-predictor-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vg-exact-predictor-header {
        padding: 20px;
    }
    
    .vg-exact-predictor-header h2 {
        font-size: 24px;
    }
    
    .vg-exact-predictor-subtitle {
        font-size: 16px;
    }
    
    .vg-exact-predictor-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .vg-exact-predictor-stat-card {
        padding: 20px;
    }
    
    .vg-exact-predictor-stat-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .vg-exact-predictor-stat-value {
        font-size: 28px;
    }
    
    .vg-exact-predictor-pattern-item {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .vg-exact-predictor-pattern-position {
        font-size: 10px;
    }
    
    .vg-exact-predictor-multi-grid {
        grid-template-columns: 1fr;
    }
    
    .vg-exact-predictor-detailed-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }
    
    .vg-exact-predictor-tab-btn {
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .vg-exact-predictor-container {
        padding: 10px;
    }
    
    .vg-exact-predictor-header {
        padding: 15px;
    }
    
    .vg-exact-predictor-header h2 {
        font-size: 20px;
    }
    
    .vg-exact-predictor-subtitle {
        font-size: 14px;
    }
    
    .vg-exact-predictor-controls {
        padding: 20px;
    }
    
    .vg-exact-predictor-stat-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .vg-exact-predictor-stat-icon {
        margin: 0 auto;
    }
    
    .vg-exact-predictor-pattern-display {
        gap: 10px;
    }
    
    .vg-exact-predictor-pattern-item {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .vg-exact-predictor-instructions {
        padding: 20px;
    }
    
    .vg-exact-predictor-detailed-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .vg-exact-predictor-detailed-pattern-item {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
}