/* ==============================
   CORPORATE DASHBOARD STYLE
============================== */

body {
  background-color: #f4f6f9;
  font-family: 'Inter', sans-serif;
}

.content-wrapper {
  background: #f4f6f9;
  padding: 20px;
}

/* ==== METRIC CARDS ==== */
.info-box {
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease-in-out;
  border: none;
}

.info-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.info-box-icon {
  border-radius: 14px;
  font-size: 22px;
}

.info-box-content {
  padding-top: 10px;
}

.info-box-text {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6c757d;
}

.info-box-number {
  font-size: 24px;
  font-weight: 700;
}

/* ==== Corporate Gradients ==== */
.bg-corporate-primary {
  background: linear-gradient(135deg, #4e73df, #224abe);
  color: white;
}

.bg-corporate-danger {
  background: linear-gradient(135deg, #e74a3b, #be2617);
  color: white;
}

.bg-corporate-warning {
  background: linear-gradient(135deg, #f6c23e, #dda20a);
  color: white;
}

.bg-corporate-success {
  background: linear-gradient(135deg, #1cc88a, #13855c);
  color: white;
}

.bg-corporate-info {
  background: linear-gradient(135deg, #36b9cc, #258391);
  color: white;
}

.bg-corporate-dark {
  background: linear-gradient(135deg, #5a5c69, #373840);
  color: white;
}

/* ==== CARD STYLE ==== */
.card {
  border-radius: 20px;
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card-header {
  background: white;
  border-bottom: 1px solid #f1f1f1;
  padding: 20px 25px;
}

.card-title {
  font-weight: 700;
  font-size: 18px;
}

.card-footer {
  background: white;
  border-top: 1px solid #f1f1f1;
  padding: 15px;
}

/* ==== MEMBER LIST ==== */
.products-list .item {
  padding: 18px;
  border-radius: 12px;
  transition: all 0.2s ease-in-out;
}

.products-list .item:hover {
  background-color: #f8f9fc;
}

.img-size-50 {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #e3e6f0;
}

.product-title {
  font-weight: 600;
  font-size: 15px;
}

.badge-pill {
  padding: 6px 10px;
  font-size: 11px;
}

/* ==== Responsive improvements ==== */
@media (max-width: 992px) {
  .info-box-number {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    padding: 15px;
  }
  .card-title {
    font-size: 16px;
  }
}
