@import "base";

.admin {
  padding: 40px;
  font-size: 16px;
  background-color: white;

  &__title {
    font-size: 20px;
    font-weight: bold;
    color: color(primary);
    padding-bottom: 30px;
  }

  &__export {
    display: flex;
    align-items: center;

    &-label {
      padding: 10px;
      width: 200px;
    }

    &-button {
      @extend %link;
      font-size: 40px;
      color: color(primary);
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      width: 50px;
    }
  }

  &__new-agency {
    margin-top: 20px;
    display: flex;

    &-name-input {
      @extend %simple-input;
      padding: 4px 8px;
      border-radius: 4px;
      border: solid 1px color(black, bright);
      margin-right: 10px;
    }
  }
}
