 body{
      padding: 100px 60px 40px;
    }
    p {
      margin-top:0;
      margin-bottom:0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .container{
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      row-gap: 40px;
      column-gap: 60px;
    }
    img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
    }
    .card-title {
      font-size: 18px;
      font-weight: bold;
      color: black;
      margin-top:12px;
    }
    .currency {
      color:rgb(134, 129, 129);
      font-size: 14px;
      font-weight: 500;
    }
    .currency-text,.dialcode{
      margin-top: 10px;
      margin-bottom: 10px;
      color:black;
      font-weight: 500;
      font-size: 14px;
    }
    .searchbar {
      width: 250px;
      padding: 12px 20px 12px;
      border: none;
      box-shadow: 0 1px 5px rgba(182, 180, 180, 0.25);
    }
    .right-section {
      display: flex;
      justify-content:space-between;
      align-items: center;
      margin-bottom: 20px;
    }
    .currencyFilter {
      padding: 12px 25px 12px;
      border: 1px solid lightgray;
      box-shadow: 0 1px 5px rgba(182, 180, 180, 0.25);
      border: none;
   
    }
    .header-title{
      font-size: 32px;
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 700;
    }
    .header {
      display: flex;
      justify-content: space-between;
      background-color: white;
      align-items: center;
      height: 50px;
      position: fixed;
      padding: 20px 40px 20px;
      top:0;
      left:0;
      right:0;
    }
    
.darktheme-text {
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
}
.flag-info {
  margin-left: 20px;
}
.card{
  box-shadow: 0 1px 10px rgba(182, 180, 180, 0.25);
  background-color: white;
  padding-bottom: 50px;
  border-radius: 8px;
}
.highlight {
  border: 4px solid #ff9800; /* brighter and thicker border */
  background-color: #fff3cd; /* light yellow background */
  box-shadow: 0 0 15px rgba(255, 152, 0, 0.8); /* glowing effect */
  transform: scale(1.05); /* slightly bigger */
  transition: all 0.3s ease; /* smooth transition */
}

@media (max-width:720px){
   .container{

      grid-template-columns: 1fr;
      row-gap: 40px;
      column-gap: 60px;
    }
    
    body{
      padding: 100px 20px 40px;
    }

    .header-title{
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 300;
  }

  .right-section {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: start;
      margin-bottom: 20px;
      gap: 20px;
    }
    .searchbar {
      width: 220px;
      padding: 12px 20px 12px;
      border: none;
      box-shadow: 0 1px 5px rgba(182, 180, 180, 0.25);
    }
    .darktheme-text {
        cursor: pointer;
        font-size: 14px;
      }
}
