/* styles.css */  
  body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: #f7f7f7;
    /* display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0; */
  }

span {
    background-color: black;
    color: yellow;
    padding: 4px;
    border-radius: 2px;
}
  .card {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    /* width: 360px; */
    overflow: hidden;
    margin-bottom: 24px;
  }


  .card-body {
    display: flex;
    padding: 16px;
    border-left: 6px solid #4db6ac;
    position: relative;
  }

  .avatar {
    background: #f2f2f2;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #555;
    margin-right: 12px;
  }

  .user-info {
    flex-grow: 1;
  }

  .user-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #333;
  }

  .user-info p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #666;
  }

  .del {
    /* background: #eee; */
    color: #777;
    font-weight: bold;
    font-size: 14px;
    border-radius: 6px;
    padding: 4px 10px;
    position: absolute;
    right: 16px;
    top: 16px;
  }

  .card-footer {
    text-align: center;
    text-transform: uppercase;
    border-top: 1px solid #eee;
    padding: 12px;
    font-size: 14px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: background 0.2s;

  }

  .card-footer:hover {
    background: #c9c9c9;
  }
  
  .link-container {
      width: 200px;
      height: 30px;
      background-color: red;
      border-radius: 3px;
      color: white;
  }