.Shipsmart {
  &__settings {
    &-tab {
      margin-top: 30px;
      overflow: hidden;
      background-color: #f1f1f1;
      border-bottom: 1px solid #ccc;

      button {
        background-color: inherit;
        float: left;
        outline: none;
        cursor: pointer;
        border: 1px solid #ccc;
        margin-right: 10px;
        padding: 10px 16px;
        transition: 0.3s;
        color: black;
        background-color: #ccc;

        &:hover {
          background-color: #f0f0f1;
        }

        &.active {
          background-color: #f0f0f1;
          border-bottom: 1px solid #f0f0f1;
        }
      }
    }

    &-form {
      animation: fadeEffect 1s;
      flex-direction: column;
      padding: 20px;
      background-color: #f0f0f1;
      display: none;
      border-top: none;
    }

    &-description {
      margin: 30px 0 30px 0;
      font-size: 15px;

      &--acount {
        line-height: 25px;
        font-size: 15px;
      }
    }

    &-inputs {
      display: flex;
      align-items: center;
      margin: 2vh 0;
    }

    &-label {
      width: auto;
      margin-right: 10px;

      &-content {
        font-weight: bold;
        width: 300px;
      }
    }

    &-input {
      width: 280px;
      height: 33px;

      &.checkbox {
        margin-left: 15px;
      }

      &-group {
        display: flex;
        align-items: baseline;
        margin-bottom: 15px;
      }
    }

    &-checked {
      color: rgb(52, 200, 52);
    }

    &-unchecked {
      color: rgb(200, 45, 45);
    }

    &-legend {
      font-size: 10px;
      margin: 0;
      font-style: italic;
      color: gray;
    }

    &-save-button {
      margin-top: 44px;
      width: 220px;
      display: inline-block;
      padding: 8px 2em;
      border-radius: 7px;
      background: linear-gradient(
        to right,
        #fcbf0a 0%,
        #ff9c00 100%
      ) !important;
      color: white !important;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      border: none;

      &:hover {
        box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.3);
        overflow: hidden;
      }
    }

    &-measure {
      width: 5vw;
      margin-right: 2vh;
    }

    &-separator {
      border: 0 none;
      background-color: black;
      width: 100%;
      height: 1px;
    }
  }

  &__measures {
    &-label {
      font-weight: bold;
    }
  }

  &__tutorial {
    &-section {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin-bottom: 2vh;
    }

    &-title {
      font-size: 1.2em;
      font-weight: bold;
    }

    &-steps {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    &-step {
      font-size: 1.2em;
    }

    &-label {
      font-size: 1em;
      margin-left: 1vh;
    }
  }
  &__country {
    &-selection-section {
      margin-top: 15px;
      padding: 20px;
      background: #f9f9f9;
      border: 1px solid #e5e5e5;
      border-radius: 5px;
    }

    &-header {
      h4 {
        margin: 0 0 5px 0;
        color: #333;
      }

      .description {
        margin: 0 0 5px 8px;
        color: #666;
        font-style: italic;
      }
    }

    &-search {
      &-container {
        display: flex;
        gap: 10px;
        margin-bottom: 15px;
        align-items: center;
      }

      &-input {
        flex: 1;
        padding: 8px 12px;
        border: 1px solid #ddd;
        border-radius: 3px;
        font-size: 14px;
      }
    }

    &-actions {
      display: flex;
      gap: 5px;
    }

    &-list-container {
      max-height: 300px;
      overflow-y: auto;
      border: 1px solid #ddd;
      border-radius: 3px;
      background: white;
    }

    &-checkboxes {
      padding: 10px;
    }

    &-checkbox-label {
      display: block;
      padding: 5px 10px;
      border-bottom: 1px solid #f0f0f0;
      cursor: pointer;
      transition: background-color 0.2s;

      &:hover {
        background-color: #f5f5f5;
      }

      &:last-child {
        border-bottom: none;
      }

      input {
        margin-right: 8px;
      }
    }

    &-name {
      font-weight: 500;
    }

    &-code {
      color: #666;
      font-size: 12px;
      margin-left: 5px;
    }
  }

  &__selected-countries {
    &-display {
      margin-bottom: 15px;
      padding: 10px;
      background: white;
      border: 1px solid #ddd;
      border-radius: 3px;
    }

    &-list {
      margin: 0 0 0 8px;
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
    }
  }

  &__selected-country-tag {
    display: inline-flex;
    align-items: center;
    background: #0073aa;
    color: white;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    gap: 5px;
  }

  &__remove-country {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    margin: 0;

    &:hover {
      background: rgba(255, 255, 255, 0.2);
      border-radius: 2px;
    }
  }

  &__no-selection {
    color: #666;
    font-style: italic;
  }
}
