body {
    background-color: #f7f9fc;
    font-family: 'Segoe UI', sans-serif;
}

.nav-tabs .nav-link.active {
    background-color: #164863;
    color: #fff;
}

.nav-tabs .nav-link {
    color: #164863;
}

.tab-content {
    margin-top: 20px;
}

.card {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.stats-box {
    background: #DDF2FD;
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    transition: 0.3s ease;
}

.stats-box:hover {
    background: #9BBEC8;
    color: white;
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .stats-box {
        margin-bottom: 20px;
    }
}
.product-card img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

@media(max-width: 767px){
  .product-card h6 {
    font-size: 14px;
  }
}