.dropdown-container {
      position: relative;
      width: 100%;
    }

    .dropdown-input {
      padding: 10px;
      width: 100%;
      border: 1px solid #ccc;
      border-radius: 6px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #fff;
    }

    .selected-flag {
      margin-right: 8px;
      font-size: 16px;
    }

    .selected-flag img{
            width: 16%;
    border-radius: 4px;
    }

    .dropdown-list {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      max-height: 300px;
      overflow-y: auto;
      border: 1px solid #ccc;
      background-color: #fff;
      z-index: 999;
      display: none;
    }

    .dropdown-item {
      padding: 8px 10px;
      cursor: pointer;
      display: flex;
      align-items: center;
    }

    .dropdown-item:hover {
      background-color: #f0f0f0;
    }

    .dropdown-item .flag {
      margin-right: 10px;
      font-size: 1.2rem;
    }

    .arrow {
      margin-left: auto;
      font-size: 0.7rem;
    }


    /* Second Country */

    .dropdown-box {
      position: relative;
      width: 100%;
      font-family: Arial, sans-serif;
    }

    .box-input {
      padding: 10px;
      width: 100%;
      border: 1px solid #aaa;
      border-radius: 6px;
      cursor: pointer;
      background-color: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .selected-emoji {
      margin-right: 8px;
      font-size: 1.2rem;
    }

    .selected-icon{
    font-size: 16px;
    }

    .selected-icon img{
            width: 16%;
    border-radius: 4px;
    }

    .list-box {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      max-height: 300px;
      overflow-y: auto;
      border: 1px solid #ccc;
      background: #fff;
      z-index: 999;
      display: none;
    }

    .list-item {
      padding: 8px 10px;
      display: flex;
      align-items: center;
      cursor: pointer;
    }

    .list-item:hover {
      background: #eee;
    }

    .emoji {
      margin-right: 10px;
      font-size: 1.2rem;
    }

  .flag-img {
      width: 20px;
      height: 15px;
      margin-right: 10px;
    }

    .caret {
      font-size: 0.8rem;
    }

    .country_design{
            /* background-color: #fbcaca7d; */
            padding: 30px 20px;
            border-radius: 8px;
            background-image: linear-gradient(45deg, #21782394, #3f7fd89c);
    }

    .country_design h1{
        font-size: 28px;
        text-align: center;
        color: white;
    }

    .country_design h4{
        font-size: 18px;
        color:white;
        margin-top: 20px;
    }
    