/* =========================================================
   BOOWS Flag – SVG based
   Base styles for country flags used in Phone and Select.
   Individual SVGs loaded via --flag-url CSS custom property.
   Use .circle-flag class to display flags as circles.
   ========================================================= */

.phone_flag {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 5px;
  background: #DBDBDB no-repeat center / cover;
  flex-shrink: 0;
  vertical-align: middle;
}

.phone_flag.phone-flag-svg {
  background-image: var(--flag-url);
  background-color: transparent;
  background-size: cover;
  background-position: center;
}

/* Circle flag modifier - adds circular shape with shadow */
.phone_flag.circle-flag,
.circle-flag .phone_flag,
.flag-circle .phone_flag {
  border-radius: 50%;
  box-shadow: 0 0 1px rgba(0, 0, 0, .4);
  width: 20px !important;
  height: 20px !important;
}
