/* ROSCOE Custom CSS */

.sim-container {
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sim-header h2 {
    padding: 0;
    margin: 5px 0;
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #333;
}

.sim-header p {
    line-height: 1.5em;
    color: #555;
    margin: 5px 0;
}

.sim-container .console {
    background-color: #ffffff;
    color: #333;
    font-family: monospace;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-height: 250px;
    overflow-y: auto;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.sim-container .controls { 
    margin: 0;
    text-align: right;
}

.sim-container .controls button {
    margin: 0 5px;
    padding: 5px 10px;
    background-color: #007bff;
    border: none;
    border-radius: 3px;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.sim-container .controls button:hover {
    background-color: #0056b3;
}

.log-message {
    font-family: monospace;
    font-size: 14px;
    padding: 4px 8px;
    color: #333;
    border-bottom: 1px solid #eee;
}

.log-message:nth-child(even) {
    background-color: #f9f9f9;
}

.log-message:last-child {
    border-bottom: none;
}
