/* generic */

.card-container {
    display: inline-block;
    padding: 8px 16px;
    margin: 4px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #333;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
} 

.card-container:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

.card-container:active {
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transform: translateY(0);
}

.card-container
{
    display: inline-block;
    text-align: center;
    background-color: #fafafa;
}

/* generic - gallery */
.pswp__bullets-indicator {
  display: flex;
  flex-direction: row;
  align-items: center;

  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%, 0);
}
.pswp__bullet {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  margin: 0 5px;
}
.pswp__bullet--active { 
  background: green;
}

.pswp__custom-caption {
  background: rgba(75, 150, 75, 0.75);
  font-size: 16px;
  color: #fff;
  width: calc(100% - 32px);
  max-width: 400px;
  padding: 2px 8px;
  border-radius: 4px;
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
}
.pswp__custom-caption a {
  color: #fff;
  text-decoration: underline;
}
.hidden-caption-content {
  display: none;
}

.pswp__zoom-level-indicator {
  background: #136912;
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
  color: #fff;
  height: auto;
  align-self: center;
  padding: 4px 6px 5px;
  margin-right: 4px;
}

/* listing page */

.herb-icon-container
{
    display: inline-block;
}

.herb-icon-container img
{
    width: 32px;
    height: 32px;
}

/* herb page */
.herb-head-container
{
    display: inline-block;
}

.herb-head-container h1
{
    display: inline-block;
    vertical-align: bottom;
}

.herb-icon
{
    display: inline-block;
    width: 64px;
    height: 64px;
}

.card-gallery-container
{
    background-color: #b3b3b3;
    padding: 12px;
}