// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
//
// Copyright (c) KALEIDOS INC Sucursal en España SL

@use "ds/typography.scss" as t;
@use "ds/_borders.scss" as *;
@use "ds/_sizes.scss" as *;

.import-modal-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xxl);
}

.import-modal-title {
  color: var(--color-foreground-primary);
}

.import-description {
  display: flex;
  flex-direction: column;
  gap: var(--sp-s);
  padding-inline-start: var(--sp-m);
  margin: 0;
  color: var(--color-foreground-secondary);
  list-style: disc;
}

.import-actions {
  @include t.use-typography("body-small");

  display: flex;
  justify-content: flex-end;
  gap: var(--sp-s);
}

.dropdown-trigger-btn {
  border-start-start-radius: 0;
  border-end-start-radius: 0;
  border-inline-start: $b-1 solid var(--color-accent-tertiary);
  width: var(--sp-xxxl);
  padding-inline: 0;
  justify-content: center;
}

.dropdown-btn {
  border-end-end-radius: 0;
  border-start-end-radius: 0;
}

.dropdown-btn-wrapper {
  position: relative;
  display: flex;
}
