﻿#CountryModal {
  padding: 10px;
  top: 0;
  bottom: 0;
  width: 550px;
  height: 400px;
  text-align: center;
}

  #CountryModal span {
    margin-bottom: 20px;
    display: inline-block;
  }

  #CountryModal h1 {
    margin-bottom: 20px;
    margin-top: 32px;
    color: #d2051e;
    text-transform: uppercase;
    font-size: 24px;
  }

.select-wrap {
  width: 400px;
  height: 100px;
  margin-top: 10px;
}

#SelectedCountry {
}

.country-modal-save-button {
  background-color: #d2051e;
  font-size: 14px;
  min-width: 120px;
  height: 40px;
  padding: 0 20px;
  color: white;
  transition: opacity 0.2s ease;
}

/* Media Queries for Tablet and Mobile */
@media only screen and (max-width: 1024px) {
  #CountryModal {
    width: 70%; /* Adjust as needed */
    height: auto;
    height: 50%;
  }

  .select-wrap {
    width: 80%; /* Adjust as needed */
  }
}

@media only screen and (max-width: 768px) {
  #CountryModal {
    width: 90%;
    padding: 5px;
    height: 50%;
    margin: 0 auto;
    top: 10%;
  }

  .select-wrap {
    width: 90%; /* Adjust as needed */
  }
}

@media only screen and (max-width: 480px) {
  #CountryModal {
    width: 90%;
    padding: 5px;
    height: 65%;
    margin: 0 auto;
    top: 10%;
  }

    #CountryModal h1 {
      font-size: 20px;
      margin-top: 16px;
    }

  .country-modal-save-button {
    font-size: 12px;
    min-width: 100px;
    height: 35px;
  }

  .select-wrap {
    width: 100%; /* Adjust as needed */
  }
}
