:root {
  --font-family-sans-serif: "Leelawadee UI";
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-family: "Leelawadee UI";
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  color: #515151 !important;

}

body {
  font-family: Arial, sans-serif;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 20px;
  background-color: #f4f4f4;
}

.container {
  padding: 0px 2.5vw !important;
}

.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 0px 10vw;
}

.product-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: scale(1.05);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-details {
  padding: 15px;
}

.product-details h3 {
  margin: 0 0 10px 0;
  color: #333;
}

.product-details p {
  color: #666;
  margin-bottom: 10px;
}

.product-price {
  font-weight: bold;
  color: #2a9d8f;
  font-size: 1.2em;
}

.add-to-cart {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #2a9d8f;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.add-to-cart:hover {
  background-color: #264653;
}

/* /////////////////////////////////////////////////////////////////////////////// */

.dash-wrapper {
  /* width: 900px; */
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
}
.dash-header {
  background: #2563eb;
  color: white;
  padding: 15px;
}
.dash-heading {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}
.dash-grid {
  display: flex;
  padding: 20px;
  gap: 20px;
}
.dash-panel {
  flex: 1;
  padding: 20px;
  border-radius: 15px;
  background: #f8fafc;
  transition: all 0.3s ease;
}
.dash-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.dash-circle-number {
  width: 100%;
  background: #2563eb;
  color: white;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 15px;
}
.dash-panel-heading {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 10px 0;
}
.dash-panel-content {
  color: #666;
  line-height: 1.6;
  margin: 0;
}
.dash-panel-bottom {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dash-metrics {
  display: flex;
  gap: 15px;
}
.dash-metric {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #666;
  font-size: 14px;
}
.dash-badge {
  background: #e2e8f0;
  color: #475569;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
}

.dropdown-toggle{
  border-color: #ced4da !important;
  background-color: white !important;
}