.bos-scanner-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #333;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.bos-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    background: #f9f9fa;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #e2e4e7;
}

.bos-form-group {
    display: flex;
    flex-direction: column;
    min-width: 150px;
}

.bos-form-group label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #555;
}

.bos-form-group input[type="text"],
.bos-form-group input[type="number"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.bos-checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e2e4e7;
}

.bos-actions {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
}

.kai-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

.kai-btn-primary {
    background: #0073aa;
    color: #fff;
}
.kai-btn-primary:hover {
    background: #005177;
}

.kai-btn-secondary {
    background: #e2e4e7;
    color: #333;
}
.kai-btn-secondary:hover {
    background: #c3c4c7;
}

.kai-btn-export {
    background: #28a745;
    color: #fff;
}
.kai-btn-export:hover {
    background: #218838;
}

.kai-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.kai-table th, .kai-table td {
    padding: 12px 10px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.kai-table th {
    background: #f1f1f1;
    font-weight: 600;
    color: #333;
}

.kai-table tr:hover {
    background: #fafafa;
}
