/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Nov 14, 2025, 8:21:16 PM
    Author     : mmeier
*/

.mb-0 img{
    width:60px;
}

.card{
    min-width: 800px;
}


.containercust {
  display: flex; /* Makes the container a flex container */
  /* Optional: further alignment and spacing */
  justify-content: space-around; /* Distributes items evenly with space around them */
  align-items: center; /* Vertically centers items */
  width: 770px;
}

.itemcust {
  /* Styles for individual div items */
    padding: 15px 20px 15px 20px;
    border: 1px solid #ccc;
    border-radius: 15px;
    margin: 5px;
    font-weight: 500;
}

/* unvisited link */
a:link {
  color: black;
}

/* visited link */
a:visited {
  color: black;
}

/* mouse over link */
a:hover {
  color: black;
}

/* selected link */
a:active {
  color: black;
}