/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 * 
 *  http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License. 
 */

.expression-container .literal-expression {
  width: 100%;
  color: var(--pf-v5-global--Color--100);
  background-color: var(--pf-v5-global--BackgroundColor--100);
  font-style: normal;
  text-align: center;
}
.expression-container .cell--selected .literal-expression {
  background-color: var(--selected-cell);
}

.literal-expression .literal-expression-header .expression-info {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}

.literal-expression .literal-expression-header {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  padding: 0.5em 0;
  border: 1px solid var(--pf-v5-global--palette--black-300);
  background-color: #def3ff;
  color: black;
}

.literal-expression .literal-expression-header .expression-name {
  font-style: normal;
}

.literal-expression .literal-expression-body {
  width: 100%;
  position: relative;
}

.literal-expression .literal-expression-body-container {
  display: flex;
}

.literal-expression .literal-expression-body-container .equals-sign {
  border-right: 1px solid var(--pf-v5-global--palette--black-300);
  background-color: var(--pf-v5-global--palette--black-200);
  width: 20px;
  min-width: 20px;
  max-width: 20px;
  color: var(--pf-v5-global--palette--black-600);
  font-family: Menlo, monospace;
}
