* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  height: 100%;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.bad_login {
        color:red;
        text-align:center;
        margin-bottom:1.5rem;
    }

ul li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

th {
  white-space: nowrap;
}

/* td {
  margin: 0 10px;
} */

.active {
  background-color: lightseagreen;
  border-radius: 5px;
  color: #fff !important;
}

.sidebar a {
  color: grey;
  padding: 10px 4px;
  display: block;
  width: 100%;
  font-size: smaller;
}

.sidebar a:hover {
  background-color: lightseagreen;
  border-radius: 5px;
  color: #fff;
  transition: 0.3s all ease-in-out;
  transition-property: "background-color", "border-radius";
}

.delete {
  color: #dc3545 !important;
}

.form-body {
  background-color: #f1f1f1;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  /* height: 100vh; */
  margin: 0;
}

.form-container {
  align-self: flex-start;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  width: 30%;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0.6rem 0.4rem;
  margin-bottom: 0.8rem;
}

.btn {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 1rem;
}

.btn:hover {
  background-color: #0056b3;
}

.login-link {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.login-link a {
  color: #007bff;
  text-decoration: none;
}

.login-link a:hover {
  text-decoration: underline;
}

.dash_wrapper {
  /* background-color: #f1f1f1; */
  background-color: whitesmoke;
}

.dash_wrapper,
.dash_container {
  height: 100vh;
}

.dash_container {
  display: flex;
}

.sidebar_container {
  width: 250px;
  color: grey;
  background-color: #fff;
  box-shadow: 5px 0 5px rgba(0, 0, 0, 0.1);
  padding: 0 20px;
  height: 100vh;
  position: relative;
  transition: transform 0.3s ease;
}

.sidebar_container button {
  position: absolute;
  bottom: 0;
  background-color: gray;
  border-radius: 5px;
  color: #fff;
  padding: 10px 4px;
  display: inline-block;
  width: calc(100% - 40px);
  margin-bottom: 10px;
  outline: none;
  border: none;
}

.sidebar h2 {
  padding: 20px 0;
  font-family: "Courier New", Courier, monospace;
  font-size: 30px;
  letter-spacing: 2px;
}

.main_container {
  flex: 1;
  overflow-y: auto;
  width: calc(100vw - 250px);
}

.main_header {
  display: flex;
  justify-content: right;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  padding: 10px 4px;
  margin: 0 2px;
}

.main_header span {
  margin-right: auto;
  display: none;
}

.main {
  padding: 20px;
}

.card_wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.card_container {
  width: 23.5%;
  background-color: #fff;
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  padding: 15px 8px;
}

.card_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 7px;
}

.card_icon img {
  width: 20px;
  height: 20px;
}

.card_body {
  display: flex;
  flex-direction: row;
}

.card_detail {
  display: flex;
  flex-direction: column;
}

.card_detail {
  padding: 8px 5px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.card_detail h3 {
  margin-bottom: 6px;
  font-size: 13px;
  color: #000;
  font-weight: 400;
}

.card_detail p {
  font-weight: bold;
  font-family: sans-serif;
}

.card_footer {
  padding: 2px;
  margin-top: 3px;
}

.card_footer a {
  font-size: 11px;
  font-weight: 200;
  color: lightseagreen;
}

.overview_wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.recent_orders_container {
  width: 49.5%;
  background-color: #fff;
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  padding: 15px 8px;
}

.roc_header {
  display: flex;
  justify-content: space-between;
  padding: 0 5px;
}

.roc_header h2 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 13px;
  font-weight: 400;
}

.roc_header a {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 11px;
  font-weight: 200;
  color: lightseagreen;
}

.roc_overview span {
  font-size: 13px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin-right: 10px;
}

.s1 {
  color: lightseagreen;
}

.s2 {
  color: rgb(218, 148, 19);
}

.s3 {
  color: rgb(211, 24, 24);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
  font-family: Arial, Helvetica, sans-serif;
  border: 1px solid #ccc;
}

th,
td {
  border-bottom: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

td {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

th {
  background-color: #f4f4f4;
  font-size: smaller;
  font-weight: 400;
}

.roc_overview .detail {
  color: #d8d4d4;
}

.admin_info_wrapper {
  display: flex;
  padding: 0 15px;
}

.admin_image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 7px;
}

.admin_image img {
  width: 20px;
  height: 20px;
}

.admin_details h3 {
  font-size: 13px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  letter-spacing: 0.7px;
  font-weight: 400;
}

.admin_details p {
  font-size: 10px;
  font-weight: 300;
  font-family: Arial, Helvetica, sans-serif;
  color: #ccc;
}

.admin_footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 1px 0 2px rgba(0, 0, 0, 0.1);
  padding: 10px 4px;
  margin: 0 2px;
  min-height: 130px;
  font-size: small;
}

.admin_footer .f1 {
  padding: 20px 2px;
}

.admin_footer .f2 {
  padding: 5px 2px;
  font-size: smaller;
  color: #ccc;
}

.og_table {
  background-color: #fff;
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  padding: 15px 8px;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.main form {
  display: flex;
  flex-direction: row;
  justify-content: left;
}

/* .main form input[type="text"] {
  width: 80%;
} */

input[type="submit"] {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0.6rem 0.4rem;
  margin-bottom: 0.8rem;
  cursor: pointer;
}

.search_result {
  margin-bottom: 20px;
}

.search_result_danger p {
  color: rgb(211, 24, 24);
}

.search_result_success p {
  color: lightseagreen;
}

.search_result p {
  font-size: smaller;
}

.search_result_success {
  border: 2px solid lightseagreen;
}

.addProduct button {
  margin-bottom: 10px;
  padding: 6px 12px;
  background-color: lightseagreen;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.product_wrapper {
  background-color: #f1f1f1;
  font-family: Arial, sans-serif;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}

.editProduct_wrapper {
  display: flex;
}

.product_form input {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0.6rem 0.4rem;
  margin-bottom: 0.8rem;
}

.product_form input[type="submit"] {
  background-color: lightseagreen;
  color: white;
}

.product_form textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0.6rem 0.4rem;
  margin-bottom: 0.8rem;
  height: 150px;
}

.close_product {
  margin-bottom: 10px;
}

.close_product button {
  padding: 6px 12px;
  cursor: pointer;
  background-color: rgba(255, 0, 0, 0.753);
  color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.main_product_container {
  display: flex;
  justify-content: space-evenly;
  padding: 5px 10px;
}

.product_card_container {
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  width: 19%;
  padding: 10px 8px;
  border-radius: 0 0 7px 7px;
  border-right: 1px solid #f1f1f1;
  border-left: 1px solid #f1f1f1;
  border-top: 1px solid #f1f1f1;
}

.product_card_image img {
  display: block;
  max-width: 100%;
  height: auto;
}

.product_card_name p {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 16px;
  margin-top: 15px;
}

.product_card_price_id {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.product_card_price_id,
.product_card_name,
.product_card_instock,
.addToCart {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 4px;
}

.product_card_price_id h2 {
  color: #ff5100;
  font-size: 25px;
  font-family: "arial";
}

.product_card_price_id p {
  font-size: 13px;
  color: #c9c6c6;
}

.addToCart button {
  padding: 10px 10px;
  border: none;
  background-color: #ff5100;
  color: white;
  font-family: "arial";
}

.header_nav {
  text-align: center;
  padding: 10px 5px;
  /* background-color: #304d7d; */
  background-color: #2a7f62;
  color: white;
  font-size: 13px;
}

.announcement_nav {
  color: white;
  background-color: #2a3336;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  font-size: 15px;
}

.nav_contact {
  font-family: arial;
  font-size: 15px;
}

.main_nav {
  padding: 20px 5%;
}

.first_stage {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.searchBar_nav {
  width: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.searchBar_nav form {
  display: flex;
  flex-direction: row;
  width: 80%;
}

.searchBar_nav input {
  padding-top: 12px;
  padding-bottom: 12px;
}

.searchBar_nav input[type="submit"] {
  background-color: #ff5100;
  color: white;
  padding-right: 16px;
  padding-left: 16px;
}

.registration_container {
  display: flex;
  width: 25%;
  justify-content: center;
}

.sign_in {
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.sign button {
  background-color: white;
  color: #ff5100;
  font-size: 15px;
  border: none;
  margin-left: 8px;
  cursor: pointer;
}

.sign a {
  color: #ff5100;
  font-size: 15px;
  text-decoration: none;
}

.logo_container h2 {
  margin-bottom: 0;
}

.cart_container {
  margin-left: 40px;
  position: relative;
}

.cart_container span {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #ff5100;
  color: white;
  padding: 2px 5px;
  border-radius: 50%;
  font-size: small;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.index_logout {
  display: inline;
}

.closebtn {
  display: none;
}

.wide_cell {
  width: 200px;
  min-width: 200px;
  max-width: 200px;
  /* white-space: nowrap; */
  overflow: hidden;
  text-overflow: ellipsis;
}

.sign_up {
  margin-left: 10px;
}

.hero {
  width: 100%;
  min-height: 80vh;
  background: linear-gradient(rgba(0, 100, 150, 0.7), rgba(0, 60, 100, 0.7)),
    url("images/pharmaxy.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  margin-top: 20px;
}

.hero-content {
  max-width: 600px;
  text-align: center;
  width: 45%;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.partner {
  padding: 0 5%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.partners_header {
  margin-bottom: 40px;
  text-align: center;
}

.partners_wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.partners_wrapper .part {
  width: 45%;
  text-align: center;
}

.part p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.partners_header h2 {
  color: #ff5e00;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* CSS for the certificate container */
.certificate-container {
  padding: 40px 0;
  text-align: center;
  margin: 30px 0;
  min-height: 80vh;
  /* background: linear-gradient(to right, #f46b45, #eea849); */
}

.certificate-container h2 {
  color: #ff5e00;
  font-size: 2.2rem;
  font-weight: 700;
}

.certificate-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.certificate-item {
  max-width: 300px;
}

.certificate-thumbnail {
  max-width: 100%;
  border: 3px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.certificate-thumbnail:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.caption {
  margin-top: 10px;
  font-style: italic;
  color: grey;
}

/* CSS for the modal overlay */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  margin-top: 50px;
  animation: zoom 0.3s;
}

@keyframes zoom {
  from {
    transform: scale(0.5);
  }
  to {
    transform: scale(1);
  }
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close:hover {
  color: #bbb;
}

/* Loading spinner */
.loader {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 20% auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Happy Customers Section Styles */
.happy-customers-section {
  background: linear-gradient(135deg, #ff9a00, #ff5e00, #ff1a00);
  padding: 80px 0;
  color: white;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.1rem;
  margin-bottom: 50px;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.rating {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.6;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
}

.customer-name {
  margin: 0;
  font-size: 1.1rem;
}

.customer-title {
  margin: 0;
  opacity: 0.8;
  font-size: 0.9rem;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.stat-item {
  background: rgba(255, 255, 255, 0.15);
  padding: 20px 30px;
  border-radius: 10px;
  min-width: 150px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Partners Section Styles */
.partners-section {
  background: white;
  padding: 80px 0;
  text-align: center;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: #2a4365; /* Deep blue for healthcare trust */
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header .subheading {
  font-size: 1.1rem;
  color: #4a5568; /* Soft gray */
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.partners-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.partners-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  text-align: left;
}

.partner-name {
  font-size: 1.1rem;
  color: #2d3748;
  padding: 18px 25px;
  background: #f8fafc; /* Very light gray bg */
  border-left: 4px solid #4299e1; /* Blue accent border */
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.partner-name:hover {
  background: #ebf8ff; /* Light blue on hover */
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .partners-grid {
    flex-direction: column;
    gap: 15px;
  }

  .partners-column {
    text-align: center;
  }

  .partner-name {
    text-align: center;
    border-left: none;
    border-bottom: 3px solid #4299e1;
  }

  .partner-name:hover {
    transform: translateY(3px);
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.8rem;
  }

  .partner-name {
    padding: 15px 20px;
    font-size: 1rem;
  }
}

/* Contact Section Styles */
.contact-section {
  background: white;
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h2 {
  font-size: 2.5rem;
  color: #2a4365;
  margin-bottom: 15px;
}

.contact-header .subheading {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: #ebf8ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 24px;
  height: 24px;
}

.info-content h3 {
  font-size: 1.2rem;
  color: #2a4365;
  margin-bottom: 5px;
}

.info-content p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

.contact-form {
  background: #f8fafc;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
  font-size: 1.3rem;
  color: #2a4365;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
  width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4299e1;
}

.form-group textarea {
  resize: vertical;
}

.submit-btn {
  background: #4299e1;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #3182ce;
}

/* Responsive Design */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .contact-header h2 {
    font-size: 2rem;
  }

  .info-item {
    flex-direction: column;
    gap: 10px;
  }

  .info-icon {
    width: 40px;
    height: 40px;
  }
}

/* Minimal Footer Styles */
.pharmacy-footer {
  background: #2a7f62;
  padding: 30px 0;
  border-top: 1px solid #f0f0f0;
  font-size: 14px;
  color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.pharmacy-info h3 {
  color: white; /* Pharmacy green */
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.pharmacy-info p {
  margin: 5px 0;
  line-height: 1.5;
}

.copyright {
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 600px) {
  .form-container {
    width: 95%;
  }
  .pharmacy-info p {
    font-size: 13px;
  }
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .sidebar_container {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 100;
    transform: translateX(-100%);
    width: 300px;
  }

  .displaySideBar {
    transform: translateX(0);
  }

  .main_container {
    flex: 1;
    overflow-y: auto;
    width: 100%;
  }

  .og_table {
    border: 1px solid #ddd;
  }

  .og_table::-webkit-scrollbar {
    height: 8px;
  }

  .og_table::-webkit-scrollbar-thumb {
    background-color: #3498db;
    border-radius: 4px;
  }

  .wide_cell {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    /* white-space: nowrap; */
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .f1 {
    text-align: center;
  }

  .main {
    padding: 10px;
  }

  .main_header span {
    display: flex;
    margin-left: 10px;
  }

  .closebtn {
    display: flex;
    justify-content: center;
  }

  .closebtn span {
    margin-left: auto;
    padding-top: 10px;
    font-size: 25px;
    font-weight: bold;
  }

  .product_form {
    width: 100%;
  }

  .addProduct_wrapper {
    padding: 0 10px;
  }

  .section-title {
    font-size: 2rem;
  }

  .stats-container {
    gap: 20px;
  }

  .stat-item {
    min-width: 120px;
    padding: 15px 20px;
  }

  .stat-number {
    font-size: 1.8rem;
  }
}
