/* aula_terminal_safety.css */
.safety-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #111;
    color: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.safety-gate-box {
    background: #222;
    border: 1px solid #444;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
}

.safety-gate-box h2 {
    color: #ff9800;
    margin-top: 0;
}

.safety-checkbox-group {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.safety-checkbox-label {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

.safety-checkbox-label input {
    margin-top: 4px;
    transform: scale(1.2);
}

.btn-safety-agree {
    background: #ff9800;
    color: #000;
    border: none;
    padding: 1rem 2rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    transition: background 0.2s;
}

.btn-safety-agree:hover {
    background: #ffa726;
}

.lab-check-section {
    background: #f9f9f9;
    border: 2px dashed #ccc;
    padding: 2rem;
    text-align: center;
    border-radius: 12px;
    margin: 2rem 0;
}

.lab-path-input {
    width: 100%;
    max-width: 400px;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-family: monospace;
}