.cards-group-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40vh;
    width: 40vw;
  }

  .petstore-card {
    width: 50%;
    max-width: 500px;
  }

  .petstore-card-content-wrapper {
    width: 100%;
    height: 200px;
    background-color: #0c7ff2; /* Light Blue */
    padding: 1vw;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }

  .petstore-card-info {
    line-height: 24px;
    color: white;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
  }

  .links-wrapper {
    position: absolute;
    bottom: 20px;
    left: 1vw;
    display: flex;
    justify-content: space-between;
    width: 50%;
  }

  .links {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-family: Arial, sans-serif;
    border-bottom: 2px solid white;
    padding-bottom: 2px;
    transition: border-color 0.3s;
  }

  .links:hover {
    cursor: pointer;
    text-decoration: none;
    border-color: transparent;
  }

  .petstore-custom-btn {
    background-color: #0c7ff2; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    transition-duration: 0.4s;
  }
  
  .petstore-custom-btn:hover {
    background-color: #45a049;
  }

  .info {
    width: 100%;
    background: transparent url('https://i.ibb.co/qy1DLhB/Path-36325-2x.png') 15px 23px / 15px 15px no-repeat padding-box;
    border: 0.5px solid #6b7e8f;
    border-radius: 8px;
    opacity: 1;
    font-style: italic;
    letter-spacing: 0px;
    color: #6b7e8f;
    margin: 0 auto 15px;
    padding: 20px;
    padding-left: 43px;
    border-left: 8px solid #6b7e8f;
}

.warning {
    width: 100%;
    background: transparent url('https://i.ibb.co/8NF8wGQ/alert-triangle-2x.png') 15px 23px / 15px 15px no-repeat padding-box;
    border: 0.5px solid #ff8a70;
    border-radius: 8px;
    opacity: 1;
    font-style: italic;
    color: #6b7e8f;
    margin: 0 auto 15px;
    padding: 20px;
    padding-left: 43px;
    border-left: 8px solid #ff8a70;
}

.success {
    width: 100%;
    background: transparent url('https://i.ibb.co/DKyV4qR/check-circle-2x.png') 15px 23px / 15px 15px no-repeat padding-box;
    border: 0.5px solid #50cba7;
    border-radius: 8px;
    opacity: 1;
    font-style: italic;
    letter-spacing: 0px;
    color: #6b7e8f;
    margin: 0 auto 15px;
    padding: 20px;
    padding-left: 43px;
    border-left: 8px solid #50cba7;
}

.error {
    width: 100%;
    background: transparent url('https://i.ibb.co/QkvccfK/x-circle-2-2x.png') 15px 23px / 15px 15px no-repeat padding-box;
    border: 0.5px solid #ff4451;
    border-radius: 8px;
    opacity: 1;
    font-style: italic;
    letter-spacing: 0px;
    color: #6b7e8f;
    margin: 0 auto 15px;
    padding: 20px;
    padding-left: 43px;
    border-left: 8px solid #ff4451;
}