.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
}

.logo-img {
  max-height: 50px;
  width: auto;
  display: block;
  margin: 0 auto;
  border: 3px solid #2d3436;
  border-radius: 5px;
  padding: 1px;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}
.logo-img::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid #636e72;
    border-radius: 10px;
    opacity: 0.5;
    pointer-events: none;
}

.logo-img:hover {
  
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}