/* RTP Simulator Styles */
body {
    font-family: 'Arial', sans-serif;
    background: #121212;
    color: #333;
    margin: 0;
    padding: 0;
}

.simulator-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.simulator-container h1 {
    color: #333;
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #4CAF50;
}

.simulator-container p {
    margin-bottom: 20px;
    color: #555;
}

.simulator-controls {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.control-group {
    display: flex;
    flex-direction: column;
}

.control-group label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.control-group select {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: white;
    font-size: 14px;
}

.simulator-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.simulator-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #4CAF50;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.simulator-button:hover {
    background-color: #45a049;
}

.simulator-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.simulator-button.stop {
    background-color: #f44336;
}

.simulator-button.stop:hover {
    background-color: #d32f2f;
}

.simulator-button.reset {
    background-color: #2196F3;
}

.simulator-button.reset:hover {
    background-color: #0b7dda;
}

.progress-container {
    width: 100%;
    height: 30px;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: #4CAF50;
    border-radius: 5px;
    width: 0%;
    transition: width 0.3s ease;
}

.stats-summary {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #e9e9e9;
    border-radius: 5px;
}

.simulator-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.result-card {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.result-card h3 {
    margin-top: 0;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 15px;
    color: #4CAF50;
}

.stat-group {
    margin-bottom: 10px;
}

.stat-label {
    font-weight: bold;
}

.simulator-table {
    width: 100%;
    border-collapse: collapse;
}

.simulator-table th,
.simulator-table td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.simulator-table th {
    background-color: #f5f5f5;
}

.chart-container {
    height: 300px;
    margin-top: 20px;
    overflow-y: auto;
}

.multiplier-bar {
    display: flex;
    margin: 2px 0;
    align-items: center;
}

.multiplier-name {
    width: 60px;
    font-weight: bold;
}

.multiplier-value {
    background-color: #2196F3;
    height: 20px;
    min-width: 2px;
    margin-right: 10px;
}

.multiplier-count {
    width: 120px;
}

.rtp-optimal,
.rtp-good,
.rtp-bad {
    font-weight: bold;
}

.rtp-optimal {
    color: #388E3C;
}

.rtp-good {
    color: #FFA000;
}

.rtp-bad {
    color: #D32F2F;
}