
.custom-country-dropdown {
  position: relative;
  width: 100%;
  max-width: 50px;

  .custom-country-selected {
    gap: 11px;
    padding: 5px;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .custom-country-selected img {
    width: 17px;
    height: auto;
    object-fit: cover;
  }

  .custom-country-list {
    display: none;
    position: absolute;
    z-index: 10;
    background: #fff;
    border: 1px solid #ccc;
    width: 250px;
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .custom-country-list.open {
    display: block;
  }

  .custom-country-option {
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;

    span {
      font-size: 14px;
    }

    span:last-of-type {
      margin-left: auto;
      flex: none;
    }
  }

  .custom-country-option img {
    width: 17px;
    height: auto;
    margin-right: 8px;
    object-fit: cover;
  }
}

