 
  
  /* Main content grows and scrolls */
  .ASmain-content {
    width: 85%;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow-y: auto;             /* enable vertical scrolling */
    scrollbar-width: thin;        /* Firefox scrollbar */
    scrollbar-color: #c2a986 transparent
  }
  
  /* ------------------ Tab Navigation ------------------ */
  .AStab-navigation {
    display: flex;
    gap: 0;
    margin: 20px 0;
    padding: 0 10px;
    border-bottom: 2px solid #e0e0e0;
  }

  .AStab-button {
    background: transparent;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    border-radius: 8px 8px 0 0;
    margin-left: 10px;
    transition: all 0.3s ease;
  }

  .AStab-button:hover {
    color: #6F4F37;
    background: #c9a275;
  }

  .AStab-button.active {
    color: #6F4F37;
    border-bottom-color: #6F4F37;
    background: #a87a47;
  }

  /* ------------------ Section Titles ------------------ */
  .ASsalestext,
  .ASpopdishtext {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
  }
  
  .ASsalescatalogtext,
  .ASpopdishmosttext {
    font-size: 15px;
    color: #6b4e32;
    margin-top: -2px;
  }
  
  /* ------------------ Search ------------------ */

 .ASsearchbox {
  margin: 20px auto;     
  width: 100%;
  max-width: 800px;
  display: flex;
  align-items: center;
  border-radius: 30px;
  border: 1px solid #2b2b2b;
  background: #fff;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.15);
  overflow: visible;
  padding: 0;
  height: 48px;
}

.ASsearchbox input[type="text"],
.ASsearchbox-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  background: transparent;
  padding: 0 15px;
  color: #2b2b2b;
  height: 100%;
  line-height: 1.2;
}

.ASsearchbox-button {
  width: 48px;
  height: 48px;
  border: none;
  background-color: #a08978;
  border-radius: 0 30px 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

.ASsearchbox-button img {
  width: 22px;
  height: 22px;
}



  
  .ASsearchbox-button:hover {
    background-color: #6b4e32;
  }
  
  /* ------------------ Categories ------------------ */

  .ASsalescontainer {
    display: flex;
    flex-direction: column; /* stack children vertically */
    align-items: center;    /* center horizontally */
    justify-content: center;
    margin: 20px auto;      /* keep some spacing */
    text-align: center;     /* center headings */
  }
  
  .ASsalestext,
  .ASsalescatalogtext {
    margin: 5px 0;
  }


  .ASbutton-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 25px;
  }
  
  .ASsalesbutton {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(241, 224, 198, 0.2);
    box-shadow: 0px 4px 6px rgba(0,0,0,0.25);
    border: 3px solid #f1e0c6;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s;
    padding: 0;
    overflow: hidden;
  }
  
  .ASsalesbutton:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 10px rgba(0,0,0,0.3);
  }

  .ASsalesbutton.active {
    background-color: rgba(160, 137, 120, 0.2);
    border-color: #a08978;
  }

  .ASsalesbutton img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
  }
  
  /* ------------------ Popular Dishes ------------------ */


  .ASpopdish-header {
    text-align: center;
    margin: 30px 0 20px;
  }
  
  .ASpopdishtext {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  
  .ASpopdishmosttext {
    font-size: 15px;
    color: #444;
  }
  
  .ASmenu-container {
    display: flex;
    justify-content: center;   /* center items when they fit */
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;           /* allow wrapping by default */
    overflow: visible;         /* normal case, no scroll */
    padding: 50px 0 20px;
  }

  
  .ASmenu-item {
    position: relative;
    width: 180px;
    background: #f1e0c6;
    border-radius: 15px;
    padding: 20px 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    text-align: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s;
    
    display: flex;             /* make card a flex container */
    flex-direction: column;    /* vertical stacking */
    justify-content: flex-start;
  }
  
  .ASmenu-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  }
  
  .ASmenu-item img {
    width: 90px;
    height: 90px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .ASmenu-info {
    margin-top: 60px;
    flex: 1;                   /* take up remaining space */
    display: flex;
    flex-direction: column;
  }
  
  .ASmenu-info h2 {
    font-size: 16px;
    font-weight: 700;
    margin: 10px 0 5px;
    color: #2b2b2b; /* consistent dark text */
  }
  
  .ASmenu-info p {
    font-size: 13px;
    color: #444;
    margin: 4px 0;
  }
  
  .ASmenu-info h3 {
    font-size: 16px;
    font-weight: bold;
    color: #6b4e32; /* highlight price in theme color */
  }
  
  .ASrating-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;          /* push ratings to bottom */
  }
  
  .ASrating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #2b2b2b;
  }
  
  .ASrating .ASstar {
    color: gold;
    font-size: 16px;
  }
  
  .ASsales {
    font-size: 12px;
    font-weight: bold;
    color: #2b2b2b;
    text-align: right;
  }
 
 
  /* ------------------ Orders (unused) — removed */
  
/* ================= Base Layout (Desktop First) ================= */

/* Already good defaults from your code, keeping them */

/* ================= Responsive Layout ================= */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
    .ASsearchbox {
      max-width: 600px;
      height: 44px;
    }
    .ASsearchbox input[type="text"] {
      font-size: 15px;
    }
    .ASsalesbutton {
      width: 65px;
      height: 65px;
    }
    .ASsalesbutton img {
      width: 55px;
      height: 55px;
    }
    .ASmenu-item {
      width: 160px;
      padding: 18px 12px;
    }
    .ASmenu-item img {
      width: 80px;
      height: 80px;
    }
    .ASmenu-info h2 {
      font-size: 15px;
    }
    .ASmenu-info h3 {
      font-size: 15px;
    }
  }
  
  /* Mobile (≤768px) */
  @media (max-width: 768px) {
    .ASmain-content {
      padding: 10px;
      width: 100%;
    }
  
    .ASsalestext,
    .ASpopdishtext {
      font-size: 18px;
    }
  
    .ASsalescatalogtext,
    .ASpopdishmosttext {
      font-size: 13px;
    }
  
    .ASsearchbox {
      max-width: 100%;
      height: 42px;
      margin: 15px auto;
    }
    .ASsearchbox input[type="text"] {
      font-size: 14px;
      padding: 0 10px;
    }
    .ASsearchbox-button {
      width: 42px;
      height: 42px;
    }
    .ASsearchbox-button img {
      width: 18px;
      height: 18px;
    }
  
    .ASbutton-container {
      gap: 15px;
    }
    .ASsalesbutton {
      width: 60px;
      height: 60px;
    }
    .ASsalesbutton img {
      width: 50px;
      height: 50px;
    }
  
    .ASmenu-container {
      gap: 20px;
      margin-top: 40px;
      padding: 30px 0 10px;
    }
    .ASmenu-item {
      width: 140px;
      padding: 15px 10px;
    }
    .ASmenu-item img {
      width: 70px;
      height: 70px;
      top: -25px;
    }
    .ASmenu-info h2 {
      font-size: 14px;
    }
    .ASmenu-info p {
      font-size: 12px;
    }
    .ASmenu-info h3 {
      font-size: 14px;
    }
  
    /* Unused order/table responsive styles removed */
  }
  
  /* Small Mobile (≤480px) */
  @media (max-width: 480px) {
    .ASsalestext,
    .ASpopdishtext {
      font-size: 16px;
    }
  
    .ASsearchbox {
      flex-direction: row;
      border-radius: 20px;
      height: 38px;
    }
    .ASsearchbox-button {
      width: 38px;
      height: 38px;
      border-radius: 0 20px 20px 0;
    }
  
    .ASbutton-container {
      gap: 10px;
    }
    .ASsalesbutton {
      width: 55px;
      height: 55px;
    }
    .ASsalesbutton img {
      width: 45px;
      height: 45px;
    }
  
    .ASmenu-container {
      gap: 15px;
      margin-top: 30px;
    }
    .ASmenu-item {
      width: 120px;
      padding: 12px 8px;
    }
    .ASmenu-item img {
      width: 60px;
      height: 60px;
      top: -20px;
    }
    .ASmenu-info h2 {
      font-size: 13px;
    }
    .ASmenu-info p {
      font-size: 11px;
    }
    .ASmenu-info h3 {
      font-size: 13px;
    }
  
    /* Unused order/table styles removed */
  }

  /* =================== CAROUSEL MANAGEMENT STYLES =================== */
  
  .ASadmanagement-container {
    margin-top: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .ASadmanagement-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #f1e0c6;
    padding-bottom: 20px;
  }

  .ASadmanagement-title {
    font-size: 24px;
    font-weight: 700;
    color: #6F4F37;
    margin: 0 0 8px 0;
  }

  .ASadmanagement-subtitle {
    font-size: 16px;
    color: #8B7355;
    margin: 0 0 20px 0;
  }

  .ASadd-dish-btn {
    background: #6F4F37;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .ASadd-dish-btn:hover {
    background: #5a3d2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(111, 79, 55, 0.3);
  }

  .ASadd-dish-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }

  .ASad-section {
    margin-bottom: 30px;
  }

  .ASad-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
  }

  .AScarousel-dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }

  .ASdish-edit-item {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
  }

  .ASdish-edit-item:hover {
    border-color: #6F4F37;
    box-shadow: 0 4px 12px rgba(111, 79, 55, 0.1);
  }

  .ASdish-image-container {
    position: relative;
    margin-bottom: 15px;
  }

  .ASdish-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
  }

  .ASupload-image-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  .ASupload-image-btn:hover {
    background: rgba(0,0,0,0.9);
    transform: scale(1.1);
  }

  .ASdish-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
  }

  .ASdish-price {
    font-size: 16px;
    font-weight: 600;
    color: #6F4F37;
    margin: 0 0 8px 0;
  }

  .ASdish-rating {
    font-size: 14px;
    color: #666;
    margin: 0 0 8px 0;
  }

  .ASdish-description {
    font-size: 14px;
    color: #666;
    margin: 0 0 8px 0;
    line-height: 1.4;
  }

  .ASdish-status {
    font-size: 12px;
    margin: 0 0 15px 0;
  }

  .ASdish-actions {
    display: flex;
    gap: 10px;
  }

  .ASedit-btn-small {
    background: #6F4F37;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
  }

  .ASedit-btn-small:hover {
    background: #5a3d2e;
  }

  .ASedit-btn-small:disabled {
    background: #ccc;
    cursor: not-allowed;
  }

  .ASdelete-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
  }

  .ASdelete-btn:hover {
    background: #c82333;
  }

  .ASdelete-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
  }

  /* Modal Styles */
  .ASmodal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
  }

  .ASmodal {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  }

  .ASmodal h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
    text-align: center;
  }

  .ASmodal label {
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
    color: #333;
  }

  .ASmodal input,
  .ASmodal textarea,
  .ASmodal select {
    width: 100%;
    padding: 10px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 5px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
  }

  .ASmodal input:focus,
  .ASmodal textarea:focus,
  .ASmodal select:focus {
    outline: none;
    border-color: #6F4F37;
    box-shadow: 0 0 0 3px rgba(111, 79, 55, 0.1);
  }

  .ASmodal-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
  }

  .ASsave-btn {
    background: #6F4F37;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
  }

  .ASsave-btn:hover {
    background: #5a3d2e;
  }

  .ASsave-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
  }

  .AScancel-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
  }

  .AScancel-btn:hover {
    background: #5a6268;
  }

  .AScancel-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .ASadmanagement-container {
      padding: 20px;
      margin-top: 20px;
    }

    .AScarousel-dishes-grid {
      grid-template-columns: 1fr;
    }

    .ASmodal {
      padding: 20px;
      margin: 10px;
    }

    .ASdish-actions {
      flex-direction: column;
    }
  }

  /* =================== CAROUSEL DISPLAY STYLES =================== */
  
  .carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .carousel-header {
    text-align: center;
    margin-bottom: 20px;
  }

  .carousel-title {
    font-size: 28px;
    font-weight: bold;
    color: #6F4F37;
    margin: 0 0 8px 0;
  }

  .carousel-subtitle {
    font-size: 16px;
    color: #8B7355;
    margin: 0;
  }
  
  /* gradient fade effect */
  .carousel-wrapper::before,
  .carousel-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;  /* width of the fade */
    pointer-events: none; /* allow clicks through */
    z-index: 3;
  }
  
  .carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fef8e4, rgba(255,255,255,0));
  }
  
  .carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fef8e4, rgba(255,255,255,0));
  }
  
  .carousel-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    padding: 10px 0;
    width: 100%;
  }
  
  .carousel-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
  
  .carousel-item {
    min-width: 280px;
    height: 350px;
    background: white;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    cursor: pointer;
  }
  
  .carousel-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  }

  .dish-image {
    height: 180px;
    overflow: hidden;
    position: relative;
  }

  .dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .dish-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .dish-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 8px 0;
  }

  .dish-description {
    font-size: 14px;
    color: #666;
    margin: 0 0 12px 0;
    line-height: 1.4;
  }

  .dish-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
  }

  .star {
    color: #ffc107;
    font-size: 16px;
  }

  .rating-value {
    font-size: 14px;
    font-weight: 600;
    color: #333;
  }

  .dish-sales {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
  }

  .sales-number {
    font-size: 16px;
    font-weight: bold;
    color: #6F4F37;
  }

  .sales-text {
    font-size: 12px;
    color: #888;
  }

  .dish-price {
    font-size: 20px;
    font-weight: bold;
    color: #6F4F37;
    text-align: right;
  }
  
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 4; /* above gradient */
  }
  
  .carousel-btn.left {
    left: 10px;
  }
  
  .carousel-btn.right {
    right: 10px;
  }
  
  .carousel-btn:hover {
    background: rgba(0,0,0,0.8);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .carousel-title {
      font-size: 24px;
    }
    
    .carousel-item {
      min-width: 240px;
      height: 320px;
    }
    
    .dish-image {
      height: 160px;
    }
    
    .dish-name {
      font-size: 16px;
    }
    
    .dish-description {
      font-size: 13px;
    }
  }
  
  @media (max-width: 480px) {
    .carousel-wrapper {
      padding: 10px;
    }
    
    .carousel-title {
      font-size: 20px;
    }
    
    .carousel-item {
      min-width: 200px;
      height: 280px;
    }
    
    .dish-image {
      height: 140px;
    }
    
    .dish-info {
      padding: 12px;
    }
    
    .dish-name {
      font-size: 15px;
    }
    
    .dish-description {
      font-size: 12px;
    }
    
    .dish-price {
      font-size: 18px;
    }
  }

  /* ------------------ Voucher Management ------------------ */
  .ASvoucher-management-container {
    margin: 30px 20px;
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .ASvoucher-management-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
  }

  .ASvoucher-management-title {
    font-size: 24px;
    font-weight: bold;
    color: #6F4F37;
    margin: 0 0 8px 0;
  }

  .ASvoucher-management-subtitle {
    font-size: 16px;
    color: #8B7355;
    margin: 0 0 20px 0;
  }

  .ASadd-voucher-btn {
    background: #4caf50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
  }

  .ASadd-voucher-btn:hover {
    background: #45a049;
  }

  .ASvoucher-section {
    margin-top: 30px;
  }

  .ASvoucher-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #6F4F37;
    margin-bottom: 20px;
  }

  .ASvouchers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
  }

  .ASvoucher-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
  }

  .ASvoucher-image {
    width: 100%;
    height: 120px;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ASvoucher-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }

  .ASvoucher-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
  }

  .ASvoucher-item.inactive {
    opacity: 0.6;
    background: #f5f5f5;
  }

  .ASvoucher-info {
    margin-bottom: 15px;
  }

  .ASvoucher-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }

  .ASvoucher-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
  }

  .ASvoucher-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
  }

  .ASvoucher-status.active {
    background: #d4edda;
    color: #155724;
  }

  .ASvoucher-status.inactive {
    background: #f8d7da;
    color: #721c24;
  }

  .ASvoucher-details p {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
  }

  .ASvoucher-points {
    font-weight: 600;
    color: #6F4F37 !important;
  }

  .ASvoucher-discount {
    font-weight: 600;
    color: #e74c3c !important;
  }

  .ASvoucher-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .ASedit-voucher-btn,
  .AStoggle-status-btn,
  .ASdelete-voucher-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .ASedit-voucher-btn {
    background: #007bff;
    color: white;
  }

  .ASedit-voucher-btn:hover {
    background: #0056b3;
  }

  .AStoggle-status-btn.activate {
    background: #28a745;
    color: white;
  }

  .AStoggle-status-btn.deactivate {
    background: #ffc107;
    color: #212529;
  }

  .AStoggle-status-btn:hover {
    opacity: 0.8;
  }

  .ASdelete-voucher-btn {
    background: #dc3545;
    color: white;
  }

  .ASdelete-voucher-btn:hover {
    background: #c82333;
  }

  /* Voucher Modal */
  .ASmodal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }

  .ASmodal {
    background: white;
    border-radius: 12px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
  }

  .ASmodal h3 {
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 600;
    color: #6F4F37;
  }

  .ASmodal label {
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
    color: #333;
  }

  .ASmodal input,
  .ASmodal select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 5px;
  }

  .ASmodal input:focus,
  .ASmodal select:focus {
    outline: none;
    border-color: #6F4F37;
    box-shadow: 0 0 0 2px rgba(111, 79, 55, 0.2);
  }

  .AScheckbox-label {
    display: flex !important;
    align-items: center;
    gap: 8px;
  }

  .AScheckbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
  }

  .ASmodal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
  }

  .ASsave-btn,
  .AScancel-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .ASsave-btn {
    background: #28a745;
    color: white;
  }

  .ASsave-btn:hover {
    background: #218838;
  }

  .AScancel-btn {
    background: #6c757d;
    color: white;
  }

  .AScancel-btn:hover {
    background: #5a6268;
  }

  /* Responsive Voucher Management */
  @media (max-width: 768px) {
    .ASvoucher-management-container {
      margin: 20px 10px;
      padding: 20px;
    }

    .ASvouchers-grid {
      grid-template-columns: 1fr;
    }

    .ASvoucher-actions {
      flex-direction: column;
    }
  }
  
  
