
/* === SIMULATION RESULTS TABLE === */
.sim-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    overflow: hidden;
}

.sim-table th, .sim-table td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sim-table th {
    background: rgba(103, 58, 183, 0.6);
    color: #FFF;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.sim-table tr:last-child td {
    border-bottom: none;
}

.sim-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.sim-table td.card-name {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sim-table .win-rate-high { color: #4CAF50; }
.sim-table .win-rate-med { color: #FFEB3B; }
.sim-table .win-rate-low { color: #F44336; }

.sim-summary-box {
    display: flex;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.sim-stat-item {
    text-align: center;
}

.sim-stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFC107;
}

.sim-stat-label {
    font-size: 0.9rem;
    color: #AAA;
}
