/* BWAYS Autonomous Control Panel Styles */
.bways-control-panel {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.bways-control-panel h2 {
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.bways-control-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.bways-control-card {
    background: rgba(255,255,255,0.9);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.bways-control-card h3 {
    color: #333;
    margin: 0 0 10px 0;
}

.bways-control-card p {
    color: #666;
    font-size: 14px;
    margin: 0 0 15px 0;
}

.bways-button-group {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.bways-btn {
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    color: white;
}

.bways-btn-start { background: #28a745; }
.bways-btn-stop { background: #dc3545; }
.bways-btn-status { background: #17a2b8; }

.bways-status-display {
    background: rgba(255,255,255,0.9);
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    display: none;
}