@charset "utf-8";
/* CSS Document */

* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

.profile-photo {
	    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.profile-photo-manage {
	    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 10px;
}

a:visited {
  color: purple; /* or any color you want */
	font-weight: 500;
	text-decoration: none !important;
}
a {text-decoration: none !important;}

.sidebar > a > h2 {
  /* Specific styles for just this case */
  color: #18640E;
  font-weight: bold;
}

textarea, input, select {
	font-family: 'Poppins', sans-serif;
	margin: 5px 0px;
}

table .description {
      font-size: 0.85em;
      color: #555;
      margin-bottom: 15px;
    }

@media print
{    
	body {
		font-size:11px;
		margin: 0px;
		padding: 0px;
	}
	
	.show {
		display: block;
	}
	
	
	 table.div_print {
        page-break-inside: auto; /* Allow table to break across pages */
    }
	table {
		page-break-inside:avoid;
		width: 100%;
	}
    tr {
        page-break-inside: avoid; /* Prevent rows from splitting */
        page-break-after: auto;
		padding: 3px;
    }
	
	body {
		background-color: #fff;
	}
	.no-print, .no-print *
    {
        display: none !important;
    }
	
}


    body {
      display: flex;
      min-height: 100vh;
      background-color: #f9f9f9;
      color: #333;
    }

    .dashboard-container {
      display: flex;
      flex-direction: row;
      width: 100%;
    }

.custom-list ul {
  list-style-type: square;    /* square bullets for ul */
  padding-left: 20px;
  color: #333;
  font-weight: normal;        /* no bold */
}

.custom-list ol {
  list-style-type: decimal;   /* decimal numbering for ol */
  padding-left: 25px;
  color: #333;
  font-weight: normal;
}

.custom-list li {
  margin-bottom: 6px;
  font-weight: normal;        /* no bold */
}



    /* ========== SIDEBAR (desktop only) ========== */
   .sidebar {
  width: 220px;
  background-color: #0E2D09;
  color: #fff !important;
  padding: 20px;
  flex-shrink: 0;
}

/* Sidebar heading */
.sidebar h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Remove bullets & spacing from nav list */
.sidebar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Individual list items */
.sidebar li {
  margin-bottom: 3px;
  padding: 0;
  cursor: pointer;
  transition: color 0.3s;
}

/* Sidebar links */
.sidebar nav a {
	font-size: 12px !important;
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease, padding-left 0.2s ease;
}

/* Hover effect for sidebar links */
.sidebar nav a:hover {
  background-color: #1e4712; /* slightly lighter green */
  color: #d4ffd0; /* subtle green highlight */
  padding-left: 18px; /* slide effect */
}

/* Optional: Hover effect on the li text itself (if not wrapped in <a>) */
.sidebar li:hover {
  color: #b4ffb0;
}

    /* ========== MAIN CONTENT ========== */
    .main-content {
      flex-grow: 1;
      padding: 20px;
		margin-bottom: 80px;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
    }

    header h1 {
      font-size: 2rem;
    }

    /* ========== USER PROFILE (DESKTOP) ========== */
    .user-profile {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .user-profile img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      object-fit: cover;
    }

    .user-profile span {
      font-weight: bold;
    }

    /* ========== USER CARD (MOBILE) ========== */
    .user-card-mobile {
      display: none;
      flex-direction: column;
      align-items: center;
      text-align: center;
      background-color: #ffffff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 1px 4px rgba(0,0,0,0.1);
      margin-bottom: 20px;
    }

    .user-card-mobile img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 5px;
    }

    .user-card-mobile span {
      font-weight: bold;
      font-size: 1.2rem;
    }

    /* ========== 4-CARD GRID SECTION ========== */
    .card-section {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-bottom: 30px;
    }

    .card {
      background-color: #ffffff;
      padding: 20px;
      border-radius: 8px;
      /* box shadow for subtle elevation */
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      transition: box-shadow 0.3s ease;
    }

    .card:hover {
      box-shadow: 0 8px 12px rgba(0,0,0,0.15);
    }

   /* Update card special styling */
    .update-card {
      border-left: 5px solid #0284c7;
      color: #034078;
		background-color: #ffffff;
      padding: 20px;
      border-radius: 8px;
      /* box shadow for subtle elevation */
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      transition: box-shadow 0.3s ease;
    }


    /* ========== WIDGET GRID ========== */
    .widget-grid,
    .mobile-menu {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .widget {
      background-color: #ffffff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
      cursor: pointer;
      transition: transform 0.2s;
      position: relative;
      padding-right: 40px; /* room for arrow on mobile */
    }

    .widget:hover {
      transform: scale(1.02);
    }

.table-section,
.update-section {
  margin-top: 2rem;
  padding: 1rem;
	margin-bottom: 1rem;
  background-color: #fff;
  border-radius: 8px;
  overflow-x: auto;
}

.update-section {
	margin: 2rem;
	border-left: #41B852 solid 3px; 
}

.table-section h2,
.update-section h2 {
  margin-bottom: 1rem;
}

.table-section table,
.update-section table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.table-section th,
.update-section th,
.table-section td,
.update-section td {
  padding: 0px 5px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
}

.table-section th,
.update-section th {
  background-color: #f5f5f5;
}


.status {
  padding: 0.15rem 0.2rem;
  border-radius: 4px;
  font-weight: bold;
}

.status.confirmed {
  color: green;
}

.status.pending {
  color: orange;
}

.status.cancelled {
  color: red;
}

/*BUTTONS*/
input.button, button.button {
  padding: 0.3rem 1.25rem; /* thinner top/bottom, wider left/right */
  font-size: 0.80rem;
  margin: 5px 0px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

button.button {
  margin: 5px 10px;
}

a.button {
  display: block;
  margin: 10px;
  text-align: center;
  padding: 0.3rem 1.25rem; /* add padding consistent with inputs/buttons */
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* Keep the rest of your CSS exactly the same */


div.button {
  width: 100px;
  text-align: center;
  margin: 5px 0px;
  /* No hover effect assumed */
}

p.button {
  margin: 10px;
  padding: 8px 0px;
  /* No hover effect assumed */
}

a {
  color: inherit;
  text-decoration: none;
}

/* Color variants with hover states */

.white {
  background-color: #FFFFFF;
  color: #333;
  border: 1px solid #333;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.white:hover {
  background-color: #f0f0f0;
  color: #000;
  border-color: #000;
}

.red {
  background-color: #dc3545;
  color: #FFFFFF !important;
  border: 1px solid #FFFFFF;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.red:hover {
  background-color: #c53040; /* Slightly darker red */
  border-color: #fff;
  color: #fff !important;
}

.green {
  background-color: #289813 !important;
  color: #FFFFFF !important;
  border: 1px solid #FFFFFF;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.green:hover {
  background-color: #1f7010; /* Darker green */
  border-color: #fff;
  color: #fff !important;
}

.orange {
  background-color: #FFA400;
  color: #fff !important;
  border: 1px solid #FFFFFF;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.orange:hover {
  background-color: #cc8400; /* Darker orange */
  border-color: #fff;
  color: #fff !important;
}

.blue {
  background-color: #1657E1;
  color: #fff;
  border: 1px solid #FFFFFF;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blue:hover {
  background-color: #0f46b8; /* Darker blue */
  border-color: #fff;
  color: #fff;
}

.lightblue {
  background-color: #56C2FD;
  color: #fff;
  font-weight: 400;
  border: 1px solid #FFFFFF;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lightblue:hover {
  background-color: #3bb3fd; /* Slightly darker light blue */
  border-color: #fff;
  color: #fff;
}

.pink {
  background-color: #E40BF0;
  color: #fff;
  border: 1px solid #FFFFFF;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pink:hover {
  background-color: #b70acc; /* Darker pink */
  border-color: #fff;
  color: #fff;
}

/*BUTTONS ENDS*/

div.grid > .card{
	margin-bottom: 20px;
	margin-top: 8px;
} 

    /* ========== RESPONSIVE STYLES ========== */
    @media (max-width: 1024px) {
      .card-section {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .sidebar {
        display: none;
      }

      .mobile-menu {
        margin-bottom: 20px;
      }

      .user-profile {
        display: none;
      }

      .user-card-mobile {
        display: flex;
      }

      /* Add arrow to widgets in both mobile-menu and widget-grid */
      .mobile-menu .widget,
      .widget-grid .widget {
        position: relative;
        padding-right: 40px;
      }

      .mobile-menu .widget::after,
      .widget-grid .widget::after {
        content: '→';

        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.2rem;
        color: #888;
      }
    }


.cardhidex {
	margin: 10px;
}


/* Shared styles */
.ad-card-desktop,
.ad-card-mobile {
  background-color: #ffffff;
  border-left: 5px solid #FFA400;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: fadeInAd 0.6s ease-in-out;
}

.ad-card-desktop h2,
.ad-card-mobile h2 {
  color: #d35400;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.ad-card-desktop p,
.ad-card-mobile p {
  color: #333;
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.4;
}

.ad-card-desktop .button,
.ad-card-mobile .button {
  display: inline-block;
  padding: 0.4rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

/* Animation */
@keyframes fadeInAd {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Desktop-only visibility */
.ad-card-desktop {
  display: block;
}
.ad-card-mobile {
  display: none;
}


/* Base card layout */
.feed-ad-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  animation: fadeInAd 0.4s ease-in-out;
}

.feed-ad-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 300px;
}

.ad-text-content {
  padding: 20px;
}

.ad-text-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #0E2D09;
}

.ad-text-content p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 15px;
}

/* Device visibility classes */
.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}

.native-ad-card {
  background-color: #fefefe;
  border: 1px solid #e0e0e0;
  border-left: 3px solid #cccccc;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: none;
  transition: background-color 0.2s ease;
  opacity: 0.95;
	max-width: 600px;
	margin: 4px 8px 4px 8px;
}

.native-ad-card:hover {
  background-color: #f9f9f9;
}

.native-ad-card img {
  width: 100%;
  display: block;
  object-fit:scale-down;
  max-height: auto;
  filter: brightness(96%);
}

.native-ad-text {
  padding: 15px;
}

.native-ad-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 8px;
}

.native-ad-text p {
  font-size: 11px;
  color: #666;
  margin-bottom: 10px;
}

.ad-link {
  font-size: 0.9rem;
  color: #18640E;
  text-decoration: underline;
  font-weight: 500;
}

/* Desktop/Mobile visibility classes */
.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}


.inbox-card-collapsible {
  background-color: #ffffff;
  border-left: 5px solid #289813;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* Header section that toggles inbox */
.inbox-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  cursor: pointer;
  background-color: #f5f5f5;
  color: #18640E;
  position: relative;
}

.inbox-card-header h2 {
  font-size: 1.1rem;
  margin: 0;
  flex-grow: 1;
}

#inbox-toggle-icon {
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 10px;
}

/* Urgent badge styling */
.urgent-badge {
  background-color: #ffcc00;
  color: #444;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 0.85rem;
  display: inline-block;
  margin-left: 10px;
  white-space: nowrap;
}

/* Inside badge hidden by default */
.urgent-badge-inside {
  display: none;
  margin-bottom: 10px;
}

/* Inbox content (starts hidden, scrolls smoothly) */
.inbox-card-content {
  display: none;
  padding: 10px 16px 16px 16px;
  max-height: 280px; /* controls height */
  overflow-y: auto;
  scroll-behavior: smooth;
}

/* Show inbox content and inside badge when .show class present */
.inbox-card-content.show {
  display: block;
}

.inbox-card-content.show .urgent-badge-inside {
  display: inline-block;
}

/* Message list styling */
.message-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.message-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.88rem;
  line-height: 1.3;
}

.message-list li:last-child {
  border-bottom: none;
}

.message-sender {
  font-weight: 600;
  color: #222;
  display: block;
  font-size: 0.9rem;
}

.message-snippet {
  color: #555;
  font-size: 0.85rem;
  margin-top: 2px;
}

.message-time {
  font-size: 0.75rem;
  color: #888;
  margin-top: 2px;
  display: block;
}

/* Urgent message highlight */
.urgent-message {
  background-color: #fff5cc;
	padding: 5px 8px !important;
}

/* Compact inbox button */
.inbox-card-content .button {
  margin-top: 10px;
  font-size: 0.8rem;
  padding: 0.3rem 1rem;
}


/* Review Card - Unique Styling */
.review-card-unique {
  background-color: #ffffff;
  border-left: 5px solid #1657E1; /* blue accent */
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: fadeInAd 0.4s ease-in-out;
	margin-bottom: 10px;
}

.review-card-unique:hover {
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

.review-card-unique-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-card-unique-header h3 {
  font-size: 1.2rem;
  color: #0E2D09;
  margin: 0;
}

.review-card-unique-count {
  font-weight: 600;
  color: #444;
  font-size: 0.95rem;
}

.review-card-unique-stars {
  font-size: 1.5rem;
  color: #FFA400;
  margin: 10px 0;
}

.review-card-unique-link {
  font-size: 0.9rem;
  color: #1657E1;
  font-weight: 500;
  text-decoration: underline;
  align-self: flex-start;
  transition: color 0.2s ease;
}

.review-card-unique-link:hover {
  color: #0f46b8;
}

.review-card-unique-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.review-card-unique-link.write-review {
  color: #289813; /* Green */
}

.review-card-unique-link.write-review:hover {
  color: #1f7010;
}

.share-review-button {
  display: inline-block;
  margin-top: 15px;
  background-color: #FFA400;
  color: white;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.share-review-button:hover {
  background-color: #cc8400;
  color: #fff;
}

.review-card-unique-stars i {
  color: #f2b01e; /* gold star color */
  margin-right: 2px;
  font-size: 18px;
}


.booking-card-link {
  text-decoration: none;
  color: inherit;
	margin-bottom: 10px;
	margin-top: 10px;
}

.booking-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  border-left: 5px solid #289813; /* Green accent */
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.booking-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

.booking-card-content h3 {
  font-size: 1.2rem;
  color: #0E2D09;
  margin: 0;
}

.booking-card-content p {
  font-size: 0.95rem;
  color: #444;
  margin: 5px 0 0;
}

.booking-card-arrow {
  font-size: 1.5rem;
  color: #289813;
  transition: transform 0.3s ease;
}

.booking-card:hover .booking-card-arrow {
  transform: translateX(5px);
}

#copy-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #289813;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
  pointer-events: none;
}

#copy-notification.show {
  opacity: 1;
  transform: translateY(0);
}









/* ---------- Layout: container = 4-column grid (desktop), responsive ---------- */
.update-container-grid3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* default for 3+ cards */
  gap: 10px;
  align-items: start;
  width: 100%;
  margin-bottom: 10px;
  margin-top: 10px;
}

/* 1 card = full width */
.update-container-grid3 > :only-child {
  grid-column: 1 / -1;
}

/* 2 cards = 50% each */
.update-container-grid3 > :first-child:nth-last-child(2),
.update-container-grid3 > :first-child:nth-last-child(2) ~ * {
  grid-column: span 2;
}

.overflo {
	overflow-x: auto; max-width: 88vw; margin-top: 10px;
}

/* collapse to 2 columns on medium screens */
@media (max-width: 1200px) {
  .update-container-grid3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* collapse to single column on small screens */
@media (max-width: 900px) {
  .update-container-grid3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ---------- Card styling ---------- */
.update-card-grid3 {
  border-left: 5px solid #0284c7;
  color: #034078;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* align content to top */
  gap: 12px;
  min-width: 0;
  transition: box-shadow 0.25s ease;
  overflow: auto;

  /* height behavior */
  height: 100%;
  min-height: 250px;
  max-height: 500px;
  overflow-y: auto;
}

.update-card-grid3:not(.card) {
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.update-card-grid3:hover {
  box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

/* ---------- Table styles scoped to this card only ---------- */
.update-card-grid3 .modern-form {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
  min-width: 560px;
}

.update-card-grid3 .modern-form th,
.update-card-grid3 .modern-form td {
  padding: 8px 10px;
  border-bottom: 1px solid #eee;
  text-align: left;
  vertical-align: middle;
  word-break: break-word;
}

.update-card-grid3 .modern-form thead th {
  background-color: #f5fbff;
  color: #034078;
  font-weight: 600;
}

.update-card-grid3 .modern-form tfoot td {
  font-weight: 700;
  background: #fcfdff;
  border-top: 2px solid #e6f0fb;
}

.miniwarning {
  padding: 8px 12px;
  margin: 10px 0;
  font-size: 0.85rem;
  border-radius: 4px;
  background-color: #f5f5f5; /* default fallback */
  border-left: 4px solid #ccc; /* default fallback */
  color: #333;
  display: inline-block;
  width: auto;
  max-width: 100%;
  transition: background-color 0.3s ease, border-color 0.3s ease;

}
.miniwarning.greenmini {
  background-color: #eaf7e7;
  border-left: 4px solid #27CE1C;
}

.miniwarning.redmini {
  background-color: #fbeaea;
  border-left: 4px solid #FF0004;
}

.miniwarning.orangemini {
  background-color: #fff4e5;
  border-left: 4px solid #FFA400;
}

.miniwarning.bluemini {
  background-color: #e8f0ff;
  border-left: 4px solid #1657E1;
}

.miniwarning.pinkmini {
  background-color: #fdf0fb;
  border-left: 4px solid #FE00B9;
}

.miniwarning.purplemini {
  background-color: #f3edfc;
  border-left: 4px solid #8600FF;
}



.side-green {
  margin-left: 3px;
  border-left: 4px solid #27CE1C99;
	margin-top: 2rem;
	margin-bottom: 1rem;
  padding: 1rem;
  background-color: #fff;
  border-radius: 8px;
  overflow-x: auto;
}

.side-red {
  margin-left: 3px;
  border-left: 4px solid #FF000499;
	margin-top: 2rem;
	margin-bottom: 1rem;
  padding: 1rem;
  background-color: #fff;
  border-radius: 8px;
  overflow-x: auto;
}

.side-blue {
  margin-left: 3px;
  border-left: 4px solid #1327B999;
	margin-top: 2rem;
	margin-bottom: 1rem;
  padding: 1rem;
  background-color: #fff;
  border-radius: 8px;
  overflow-x: auto;
}

.side-orange {
  margin-left: 3px;
  border-left: 4px solid #FFB10099;
	margin-top: 2rem;
	margin-bottom: 1rem;
  padding: 1rem;
  background-color: #fff;
  border-radius: 8px;
  overflow-x: auto;
}

.side-pink {
  margin-left: 3px;
  border-left: 4px solid #FE00B999;
	margin-top: 2rem;
	margin-bottom: 1rem;
  padding: 1rem;
  background-color: #fff;
  border-radius: 8px;
  overflow-x: auto;
}

.side-purple {
  margin-left: 3px;
  border-left: 4px solid #8600FF99;
	margin-top: 2rem;
	margin-bottom: 1rem;
  padding: 1rem;
  background-color: #fff;
  border-radius: 8px;
  overflow-x: auto;
}





@media (max-width: 1024px) {
  .update-card-grid3 .modern-form {
    min-width: 0;
    font-size: 13px;
  }
}











@media (max-width: 768px) {
  .booking-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .booking-card-arrow {
    align-self: flex-end;
    font-size: 1.3rem;
  }
}



/* Responsive behavior */
@media (max-width: 768px) {
  .review-card-unique {
    padding: 15px;
  }

  .review-card-unique-header h3 {
    font-size: 1rem;
  }

  .review-card-unique-stars {
    font-size: 1.3rem;
  }

  .review-card-unique-link {
    font-size: 0.85rem;
  }
}


@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .native-ad-card img {
    max-height: 200px;
  }

  .native-ad-text h4 {
    font-size: 1rem;
  }

  .native-ad-text p {
    font-size: 0.9rem;
  }
}


/* Responsive image ad adjustments */
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .feed-ad-card img {
    max-height: 250px;
  }

  .ad-text-content {
    padding: 15px;
  }

  .ad-text-content h3 {
    font-size: 1.2rem;
  }

  .ad-text-content p {
    font-size: 0.95rem;
  }
}

/* Animation (reuse from earlier) */
@keyframes fadeInAd {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 768px) {
  .ad-card-desktop {
    display: none;
  }
  .ad-card-mobile {
    display: block;
    padding: 15px;
    margin-bottom: 20px;
  }

  .ad-card-mobile h2 {
    font-size: 1.2rem;
  }

  .ad-card-mobile p {
    font-size: 0.95rem;
  }

  .ad-card-mobile .button {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }
}





@media (max-width: 600px) {
  .card-section {
    grid-template-columns: repeat(1, 1fr);
  }
	
.table-section th,
.table-section td,
.update-section th,
.update-section td {
  font-size: 10px;
}

	.update-section {
		margin: 1rem;
	}	
}

@media (max-width: 300px) {
  .card-section {
    grid-template-columns: 1fr;
  }
}




    @media (min-width: 769px) {
      .mobile-menu {
        display: none;
      }

      .user-card-mobile {
        display: none;
      }
		div.hidex {
			display: none;
		}
    }

