/* Bet Mentor Pro - PHP Only Version - CSS - Νέα Διάταξη */
.bet-mentor-container-php {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    background: #f8f9fa;
    box-sizing: border-box;
    position: relative;
}

/* Prevent body scrolling when bet slip is open */
body.no-scroll {
    overflow: hidden;
}

.bet-mentor-message {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.bet-mentor-message i {
    font-size: 1.2rem;
}

/* Slide-in Bet Slip */
.slide-in-betslip {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10000;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.slide-in-betslip.active {
    right: 0;
}

.betslip-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.betslip-overlay.active {
    opacity: 1;
    visibility: visible;
}

.betslip-toggle-button {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right top;
    background: linear-gradient(135deg, #4a6cf7 0%, #3b82f6 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    z-index: 9998;
    box-shadow: -2px 0 10px rgba(74, 108, 247, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.betslip-toggle-button:hover {
    background: linear-gradient(135deg, #3a5ce5 0%, #2563eb 100%);
    padding-right: 30px;
    transform: translateY(-50%) rotate(-90deg) translateX(5px);
}

.betslip-toggle-button .toggle-count {
    background: white;
    color: #4a6cf7;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.betslip-panel-header {
    background: linear-gradient(135deg, #4a6cf7 0%, #3b82f6 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 70px;
}

.betslip-panel-header h3 {
    margin: 0;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-betslip {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    line-height: 1;
}

.close-betslip:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.betslip-panel-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
}

.betslip-panel-content .betslip-items-horizontal {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.betslip-panel-content .betslip-item-horizontal {
    background: white;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #e2e8f0;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.betslip-panel-content .betslip-summary-horizontal {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-top: 20px;
}

.betslip-panel-content .clear-form-horizontal {
    margin-top: 15px;
    text-align: center;
}

.betslip-panel-content .btn-clear-betslip {
    width: 100%;
    padding: 12px;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.betslip-panel-content .btn-clear-betslip:hover {
    background: #dc2626;
}

/* Pulse animation for bet slip counter */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.betslip-counter .stat-value {
    transition: all 0.3s ease;
    display: inline-block;
}

.betslip-counter .stat-value.pulse {
    animation: pulse 0.5s ease;
}

/* Αφαίρεση του παλιού horizontal bet slip */
.horizontal-betslip-container {
    display: none;
}

/* Tools Bar (Horizontal above header) */
.bet-mentor-tools-bar {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #e3e6f0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.bet-mentor-form-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.tools-section {
    flex: 1;
    min-width: 200px;
}

.tools-section h3 {
    margin: 0 0 10px 0;
    color: #2d3748;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.form-select {
    width: 100%;
    padding: 10px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    background: white;
    cursor: pointer;
}

.bet-type-selector-horizontal {
    display: flex;
    gap: 10px;
}

.bet-type-option {
    flex: 1;
}

.bet-type-option input[type="radio"] {
    display: none;
}

.bet-type-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 12px 8px;
    background: white;
    border: 2px solid #e3e6f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.bet-type-label:hover {
    border-color: #4a6cf7;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(74, 108, 247, 0.1);
}

.bet-type-option input[type="radio"]:checked + .bet-type-label {
    background: linear-gradient(135deg, #4a6cf7 0%, #3b82f6 100%);
    border-color: #4a6cf7;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 108, 247, 0.2);
}

.bet-icon {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #4a5568;
}

.bet-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a5568;
}

.bet-type-option input[type="radio"]:checked + .bet-type-label .bet-icon,
.bet-type-option input[type="radio"]:checked + .bet-type-label .bet-name {
    color: white;
}

.tools-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: flex-end;
}

.btn-primary, .btn-secondary {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #4a6cf7 0%, #3b82f6 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3a5ce5 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 108, 247, 0.2);
}

.btn-secondary {
    background: #6b7280;
    color: white;
}

.btn-secondary:hover {
    background: #4b5563;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

/* Header */
.bet-mentor-header {
    background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.bet-mentor-logo h1 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.subtitle {
    margin: 5px 0 0 0;
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 300;
}

.bet-mentor-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255,255,255,0.15);
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    min-width: 110px;
    border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.1);
}

.stat-card.betslip-counter {
    background: rgba(255,193,7,0.25);
    border-color: rgba(255,193,7,0.4);
    cursor: pointer;
}

.stat-card.betslip-counter:hover {
    background: rgba(255,193,7,0.35);
    border-color: rgba(255,193,7,0.6);
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 5px;
    font-weight: 500;
}

/* Bet Slip Item Styling */
.betslip-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.bet-league {
    font-size: 0.8rem;
    font-weight: 700;
    color: #10b981;
    background: #d1fae5;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
}

.btn-remove-bet {
    background: none;
    border: none;
    color: #fc8181;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.btn-remove-bet:hover {
    background: #fed7d7;
    color: #f56565;
}

.betslip-match {
    margin-bottom: 10px;
}

.match-teams {
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.match-time {
    font-size: 0.8rem;
    color: #718096;
    font-weight: 500;
}

.betslip-bet {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #e2e8f0;
}

.bet-type {
    font-size: 0.85rem;
    color: #4a5568;
    font-weight: 600;
}

.bet-selection {
    font-weight: 700;
    color: #10b981;
    font-size: 0.9rem;
}

.bet-odds {
    background: #4a6cf7;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.9rem;
}

.empty-betslip-horizontal {
    text-align: center;
    padding: 60px 20px;
    color: #718096;
}

.empty-betslip-horizontal i {
    font-size: 3rem;
    color: #cbd5e0;
    margin-bottom: 20px;
    display: block;
    opacity: 0.7;
}

.empty-betslip-horizontal h4 {
    margin: 0 0 10px 0;
    color: #4a5568;
    font-size: 1.2rem;
}

.empty-betslip-horizontal p {
    margin: 5px 0;
    color: #a0aec0;
    font-size: 0.9rem;
}

.betslip-summary-horizontal {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
    color: #4a5568;
    font-size: 0.95rem;
}

.total-odds {
    color: #10b981;
    font-size: 1.1rem;
    font-weight: 700;
}

.stake-form-horizontal {
    margin-top: 15px;
}

.stake-input-horizontal {
    margin: 15px 0;
}

.stake-input-horizontal label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3748;
    font-size: 0.9rem;
}

.stake-input-horizontal input {
    width: 100%;
    padding: 10px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    box-sizing: border-box;
}

.potential-payout {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    padding: 15px;
    background: #d1fae5;
    border-radius: 8px;
    border: 2px solid #10b981;
    font-weight: 700;
    color: #065f46;
}

.payout-amount {
    font-size: 1.2rem;
    color: #065f46;
}

.btn-place-bet {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-place-bet:hover {
    background: linear-gradient(135deg, #0da271 0%, #047857 100%);
    transform: translateY(-2px);
}

/* Main Content Full Width */
.main-content-fullwidth {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e3e6f0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f2f7;
}

.results-header h3 {
    margin: 0;
    color: #2d3748;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.results-info {
    display: flex;
    align-items: center;
}

.prediction-method {
    font-size: 0.85rem;
    color: #4a6cf7;
    background: #f0f4ff;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.results-container-fullwidth {
    margin-top: 15px;
}

.empty-results {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
    background: #fafbfd;
    border-radius: 10px;
    border: 2px dashed #dbe1e8;
}

.empty-results i {
    font-size: 3rem;
    color: #dbe1e8;
    margin-bottom: 20px;
    display: block;
}

.empty-results h4 {
    margin: 0 0 15px 0;
    color: #4a5568;
    font-size: 1.2rem;
}

.empty-results p {
    margin: 0 0 15px 0;
    color: #718096;
    font-size: 0.95rem;
}

.data-notice {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e6fffa;
    padding: 8px 15px;
    border-radius: 6px;
    margin-top: 15px;
    color: #065f46;
    font-size: 0.85rem;
}

.data-notice i {
    font-size: 0.9rem;
    color: #0d9488;
}

.debug-info {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
}

.debug-info h5 {
    color: #dc3545;
    margin-bottom: 10px;
}

.debug-info pre {
    background: #e9ecef;
    padding: 10px;
    border-radius: 5px;
    overflow: auto;
    max-height: 200px;
    font-size: 12px;
}

/* Full Width Matches Table */
.matches-table-container-fullwidth {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #e3e6f0;
}

.upcoming-matches-table-fullwidth {
    width: 100%;
    border-collapse: collapse;
    min-width: 1000px;
}

.upcoming-matches-table-fullwidth th {
    background: #f8f9fa;
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
    font-size: 0.9rem;
}

.upcoming-matches-table-fullwidth td {
    padding: 15px 12px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.upcoming-matches-table-fullwidth tr:last-child td {
    border-bottom: none;
}

.upcoming-matches-table-fullwidth tr:hover td {
    background-color: #f8f9fa;
}

.match-date {
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
}

.match-time {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 3px;
}

.league-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.league-flag {
    font-size: 1.2rem;
}

.league-name {
    font-weight: 600;
    color: #495057;
    white-space: nowrap;
    font-size: 0.9rem;
}

.match-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-team, .away-team {
    font-weight: 600;
    color: #495057;
    white-space: nowrap;
    font-size: 0.9rem;
}

.vs {
    color: #adb5bd;
    font-size: 0.8rem;
}

.prediction-badge {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    min-width: 70px;
    text-align: center;
    font-size: 0.85rem;
}

.prediction-home {
    background: #28a745;
    color: white;
}

.prediction-draw {
    background: #ffc107;
    color: #212529;
}

.prediction-away {
    background: #dc3545;
    color: white;
}

.confidence-bar {
    background: #e9ecef;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    width: 100px;
    margin: 0 auto;
}

.confidence-fill {
    background: linear-gradient(90deg, #4a6cf7 0%, #3b82f6 100%);
    height: 100%;
}

.confidence-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.odds-cell {
    text-align: center;
}

.odds-value {
    display: block;
    font-weight: 700;
    color: #1a202c;
    font-size: 1rem;
}

.inline-form {
    display: inline;
}

.btn-add-match, .btn-add-value {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    white-space: nowrap;
}

.btn-add-match:hover, .btn-add-value:hover {
    background: #218838;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

/* Quick Tips */
.quick-tips-container {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    margin: 30px 0;
}

.quick-tips-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.quick-tips-header h3 {
    margin: 0;
    color: #2d3748;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.refresh-tips {
    background: #4a6cf7;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
}

.refresh-tips:hover {
    background: #3a5ce5;
    transform: translateY(-1px);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.tip-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.tip-card.low { border-top: 3px solid #10b981; }
.tip-card.medium { border-top: 3px solid #f59e0b; }
.tip-card.high { border-top: 3px solid #ef4444; }

.tip-badge {
    padding: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
}

.tip-card.low .tip-badge { background: #10b981; }
.tip-card.medium .tip-badge { background: #f59e0b; }
.tip-card.high .tip-badge { background: #ef4444; }

.tip-content {
    padding: 15px;
}

.tip-match {
    margin-bottom: 15px;
}

.tip-match .league {
    display: block;
    color: #4a5568;
    font-size: 0.85rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.tip-match .teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 700;
    color: #2d3748;
    font-size: 1rem;
}

.tip-match .match-time {
    color: #718096;
    font-size: 0.8rem;
    text-align: center;
}

.tip-bet {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.tip-bet .bet-type {
    color: #4a5568;
    font-weight: 600;
    font-size: 0.9rem;
}

.tip-bet .odds {
    background: #4a6cf7;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1rem;
}

.tip-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.tip-stats .stat {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px;
    background: #f8fafc;
    border-radius: 6px;
    font-weight: 600;
    color: #4a5568;
    font-size: 0.85rem;
}

.tip-stats .stat i {
    color: #4a6cf7;
}

.add-tip-form {
    margin: 0;
}

.add-tip {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #4a6cf7 0%, #3b82f6 100%);
    color: white;
    border: none;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.add-tip:hover {
    background: linear-gradient(135deg, #3a5ce5 0%, #2563eb 100%);
}

.no-tips {
    text-align: center;
    padding: 40px 20px;
    color: #718096;
    grid-column: 1 / -1;
}

.no-tips i {
    font-size: 2.5rem;
    color: #cbd5e0;
    margin-bottom: 15px;
    display: block;
}

.no-tips h4 {
    margin: 0 0 10px 0;
    color: #4a5568;
}

.no-tips p {
    margin: 5px 0;
    color: #a0aec0;
    font-size: 0.9rem;
}

/* Value Finder */
.value-finder {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    margin: 30px 0;
}

.finder-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.finder-header h3 {
    margin: 0;
    color: #2d3748;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.finder-filters {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.finder-filters select {
    padding: 8px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-weight: 600;
    color: #2d3748;
    background: white;
    cursor: pointer;
    min-width: 150px;
}

.value-slider-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.value-results {
    margin-top: 20px;
}

.value-table-container {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.value-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.value-table th {
    background: #f8f9fa;
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
    font-size: 0.9rem;
}

.value-table td {
    padding: 15px 12px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.value-match {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.value-match .league-flag {
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.value-match .teams {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.9rem;
}

.value-match .match-time {
    color: #718096;
    font-size: 0.8rem;
}

.bet-type-badge {
    display: inline-block;
    background: #e2e8f0;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 3px;
}

.probability-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4a6cf7 0%, #3b82f6 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.85rem;
    min-width: 60px;
    text-align: center;
}

.actual-odds {
    color: #10b981;
    font-size: 1.1rem;
}

.value-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.85rem;
    min-width: 60px;
    text-align: center;
}

.value-badge.value-high {
    background: #10b981;
    color: white;
}

.value-badge.value-medium {
    background: #f59e0b;
    color: white;
}

.value-badge.value-low {
    background: #ef4444;
    color: white;
}

.no-value-bets {
    text-align: center;
    padding: 40px;
    color: #718096;
}

.no-value-bets i {
    font-size: 2rem;
    color: #cbd5e0;
    margin-bottom: 10px;
    display: block;
}

/* Standalone Betslip */
.standalone-betslip {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    border: 1px solid #e3e6f0;
    margin: 20px 0;
}

.standalone-betslip .betslip-header {
    padding: 15px 20px;
    background: linear-gradient(135deg, #4a6cf7 0%, #3b82f6 100%);
}

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

.betslip-count {
    background: white;
    color: #4a6cf7;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.standalone-betslip .empty-betslip {
    padding: 30px 20px;
    text-align: center;
}

.empty-icon {
    font-size: 2.5rem;
    color: #cbd5e0;
    margin-bottom: 15px;
}

.empty-betslip h4 {
    margin: 0 0 8px 0;
    color: #4a5568;
    font-size: 1.1rem;
}

.empty-betslip p {
    margin: 0 0 15px 0;
    color: #a0aec0;
    font-size: 0.9rem;
}

.bet-league-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bet-time {
    font-size: 0.75rem;
    color: #a0aec0;
}

.betslip-bet-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.bet-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bet-odds-value {
    font-weight: 700;
    color: #10b981;
    font-size: 1rem;
}

.stake-section {
    margin: 15px 0;
}

.stake-input-group {
    margin-bottom: 10px;
}

.stake-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #4a5568;
    font-size: 0.9rem;
}

.stake-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.stake-controls input {
    flex: 1;
    padding: 10px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    color: #2d3748;
}

.quick-stakes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.quick-stake {
    padding: 8px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 6px;
    font-weight: 600;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    font-size: 0.85rem;
}

.quick-stake:hover {
    border-color: #10b981;
    color: #10b981;
}

.payout-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
    font-size: 0.9rem;
}

.payout-label i {
    color: #10b981;
}

.betslip-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 15px;
}

/* Upcoming Matches Shortcode */
.bet-mentor-upcoming-matches {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    margin: 30px 0;
}

.matches-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.matches-header h3 {
    margin: 0;
    color: #2d3748;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.matches-count {
    font-size: 0.85rem;
    color: #4a6cf7;
    background: #f0f4ff;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.no-data {
    text-align: center;
    padding: 40px;
    color: #718096;
}

.no-data i {
    font-size: 2rem;
    color: #cbd5e0;
    margin-bottom: 10px;
    display: block;
}

.no-data p {
    margin: 0;
    color: #a0aec0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .bet-mentor-form-horizontal {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tools-section {
        min-width: 100%;
    }
    
    .tools-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .bet-mentor-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }
    
    .bet-mentor-logo h1 {
        font-size: 1.8rem;
    }
    
    .bet-mentor-stats {
        justify-content: center;
    }
    
    .stat-card {
        min-width: 100px;
        padding: 12px 15px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .finder-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .finder-filters {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }
    
    .finder-filters select {
        width: 100%;
    }
    
    .value-slider-container {
        width: 100%;
        justify-content: space-between;
    }
    
    /* Slide-in bet slip responsive */
    .slide-in-betslip {
        width: 100%;
        right: -100%;
    }
    
    .betslip-toggle-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .betslip-toggle-button .toggle-count {
        width: 22px;
        height: 22px;
        font-size: 0.75rem;
    }
    
    .betslip-panel-header {
        padding: 15px;
        min-height: 60px;
    }
    
    .betslip-panel-header h3 {
        font-size: 1.2rem;
    }
    
    .close-betslip {
        width: 32px;
        height: 32px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .bet-mentor-container-php {
        padding: 10px;
    }
    
    .bet-mentor-logo h1 {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .stat-card {
        min-width: 80px;
        padding: 10px;
    }
    
    .stat-value {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .bet-type-selector-horizontal {
        flex-direction: column;
    }
    
    .betslip-toggle-button {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .betslip-toggle-button .toggle-count {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .prediction-badge {
        padding: 6px 10px;
        min-width: 60px;
        font-size: 0.8rem;
    }
    
    .confidence-bar {
        width: 80px;
        height: 18px;
    }
    
    .confidence-value {
        font-size: 0.7rem;
    }
}