/* Küçük ekranlar (SM) ve üzeri */
@media (min-width: 576px) {
    .rounded-sm-4 { border-radius: 1rem !important; }
  }
  
  /* Orta ekranlar (MD) ve üzeri */
  @media (min-width: 768px) {
    .rounded-md-4 { border-radius: 1rem !important; }
  }
  
  /* Büyük ekranlar (LG) ve üzeri */
  @media (min-width: 992px) {
    .rounded-lg-4 { border-radius: 1rem !important; }
  }
  