.kards {
  width: 100%;
  padding: 35px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 24px;
}

.kard {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 7px 28px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kard:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.number {
  font-size: 35px;
  font-weight: 600;
  color: #235fff;
}

.kard-name {
  font-weight: 700;
  color: #666;
}

.icon-box i {
  font-size: 40px;
  color: seagreen;
}

/* Example for chats layout (keep as needed) */
@media(max-width:500px){
  .chats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2px;
    width: 100%;
    padding: 7px;
    padding-top: 0;
  }
  .chat {
    background: #fff;
    padding: 4px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  }
}


img .profile-imgs{
    width: 50px;
    height: 50px;
    object-fit: cover;
     border-radius: 100%;
}
   .pagedlogin {
      background-color: #f8f9fa;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .login-card {
      max-width: 400px;
      width: 100%;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      padding: 30px;
      text-align: center;
    }
    .login-card img {
      width: 80px;
      margin-bottom: 15px;
    }
    .form-control:focus {
      box-shadow: none;
      border-color: #235fff;
    }
    .btn-login {
      background-color: #0d3b8c;
      color: #fff;
      font-weight: 600;
    }
    .btn-login:hover {
      background-color: #0b3173;
      color: white;
    }
   
