/*
 * Copyright 2022 Haulmont.
 *
 * Licensed 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.
 */

.buttons-panel {
  width: 100%;
  flex-wrap: wrap;
}

.datetime-picker-container {
  display: flex;
  align-items: baseline;
  gap: calc(var(--lumo-space-xs) / 2);
}

.datetime-picker-container vaadin-date-picker {
  min-width: 0;
  flex: 1 1 auto; /*same as for Vaadin Date Time Picker date-part*/
}

.datetime-picker-container vaadin-time-picker {
  min-width: 0;
  flex: 1 1.65 auto; /*same as for Vaadin Date Time Picker time-part*/
}

.bordered-panel {
  border: 1px solid;
  border-color: var(--lumo-contrast-20pct);
  border-radius: var(--lumo-border-radius-l);
}
