* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

#wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}

#main {
  flex: 1;
}

/* Header */
.header {
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, #FF6B9D, #C44569);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.content {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 2%;
}
#content{
  overflow: hidden;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  max-width: 250px;
}

.logo-image {
  max-height: 140%;
  max-width: 140%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.website-name {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
}

.website-name h1 {
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.btn {
  gap: 10px;
  display: flex;
  align-items: center;
}
.btnRefresh,
.btnLogin {
  border-radius: 8px;
  padding: 10px 24px;
  gap: 10px;
  background: linear-gradient(135deg, #E84393, #FD79A8);
  color: #ffff;
  border: none;
  font-family: Inter, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btnRefresh:hover,
.btnLogin:hover {
  background: linear-gradient(135deg, #C44569, #E84393);
  cursor: pointer;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 67, 147, 0.4);
}
.btnRefresh {
  width: 107px;
  height: 40px;
}
.btnLogin {
  width: 100%;
  height: 40px;
}

/* Body section */
.container-fluid {
  width: 100%;
  height: auto;
  display: flex;
}
#main{
  padding: 30px;
  align-items: center;
  overflow: hidden;
}
.menu {
  width: 350px;
  float: left;
}
.btnPublish {
  width: 100%;
  height: 40px;
  border-radius: 8px;
  padding: 10px 24px;
  gap: 10px;
  background: linear-gradient(135deg, #E84393, #FD79A8);
  color: #ffff;
  border: none;
  font-family: Inter, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
}
.btnPublish:hover{
  background: linear-gradient(135deg, #C44569, #E84393);
  cursor: pointer;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 67, 147, 0.4);
}
.search {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 10px;
  gap: 10px;
}
.search input {
  width: 100%;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 10px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}
.btnSearch {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 10px;
  background: linear-gradient(135deg, #E84393, #FD79A8);
  color: #ffff;
  border: none;
  font-family: Inter, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btnSearch:hover {
  background: linear-gradient(135deg, #C44569, #E84393);
  cursor: pointer;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 67, 147, 0.4);
}
.savedButtons {
  width: 100%;
  height: 10px;
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 16px;
}
.btnSaved,
.btnDashboard,
.loginBtn,
.btnLogout {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 10px 24px;
  border: none;
  font-family: Inter, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}
.btnSaved {
  background-color: #C3891B;
  color: #ffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btnSaved:hover {
  background-color: #A67A15;
  cursor: pointer;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(195, 137, 27, 0.4);
}
.loginBtn , .btnLogout{
  background: linear-gradient(135deg, #E84393, #FD79A8);
  color: #ffff;
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.loginBtn:hover, .btnLogout:hover {
  background: linear-gradient(135deg, #C44569, #E84393);
  cursor: pointer;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 67, 147, 0.4);
}
.btnDashboard{
  background: linear-gradient(135deg, #FF6B9D, #C44569);
  color: #ffff;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btnDashboard:hover {
  background: linear-gradient(135deg, #C44569, #FF6B9D);
  cursor: pointer;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.btnVerifyProfile{
  background: linear-gradient(135deg, #E84393, #FD79A8);
  color: #ffff;
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
}
.btn-dashboard{
  width: 100%;
  margin-top: 30px;
  display: flex;
  gap: 10px;
}

.btn-dashboard button {
  flex: 1;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 10px 24px;
  border: none;
  font-family: Inter, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-dashboard button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 67, 147, 0.4);
}

/* Quick Links */
.quickLinks {
  width: auto;
  height: auto;
  margin-top: 30px;
  padding: 30px 20px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
}
.quickLinks h1 {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #000000;
}
.quickLinks div {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #E84393, #FD79A8);
  border-radius: 8px;
}
.menu-list {
  list-style: none;
  margin-top: 40px;
  line-height: 1.3;
}
.menu-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  color: #757575;
  padding: 5px 10px 5px 25px;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
}
.menu-list li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  -webkit-mask: url("/images/flower-lotus-fill-svgrepo-com 1.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask: url("/images/flower-lotus-fill-svgrepo-com 1.svg") no-repeat center;
  mask-size: contain;
  background: linear-gradient(135deg, #E84393, #FD79A8);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.menu-list li:hover {
  color: #E84393;
  transform: translateX(5px);
  transition: all 0.3s ease;
}

/* Category Header Styles */
.category-header {
  text-align: center;
  margin: 20px 0;
  padding: 20px;
  background: linear-gradient(135deg, #FFF0F5, #FFE4E1);
  border-radius: 12px;
  border: 1px solid #E84393;
}

.category-header h2 {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #212121;
  margin: 0 0 10px 0;
}

.category-name {
  color: #E84393;
  font-weight: 800;
}

.clear-filter {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, #E84393, #FD79A8);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
}

.clear-filter:hover {
  background: linear-gradient(135deg, #C44569, #E84393);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 67, 147, 0.4);
  color: #fff;
  text-decoration: none;
}

/* Right Side */
.main-content {
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}
.social-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto;
}
i {
  font-size: 20px !important;
  color: #ffff;
}
.btnSubscribe,
.btnSubscribe1,
.btnSubscribe2 {
  width: 100%;
  max-width: fit-content;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 10px 24px;
  color: #ffff;
  border: none;
  font-family: Inter, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 5px;
}
.btnSubscribe { 
  background: linear-gradient(135deg, #E84393, #FD79A8);
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
}

.btnSubscribe:hover {
  background: linear-gradient(135deg, #C44569, #E84393);
  cursor: pointer;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 67, 147, 0.4);
}

.btnSubscribe1 { 
  background: linear-gradient(135deg, #FF6B9D, #C44569);
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btnSubscribe1:hover {
  background: linear-gradient(135deg, #C44569, #FF6B9D);
  cursor: pointer;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.btnSubscribe2 { 
  background: linear-gradient(135deg, #FD79A8, #E84393);
  box-shadow: 0 4px 15px rgba(253, 121, 168, 0.3);
}

.btnSubscribe2:hover {
  background: linear-gradient(135deg, #E84393, #FD79A8);
  cursor: pointer;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(253, 121, 168, 0.4);
}

/* Ads Grid */
.ads-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  font-family: Arial, sans-serif;
  justify-content: flex-start;
}
.ad-card {
  background: #fff;
  border: 1px solid #ddd;
  width: calc(50% - 10px);
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ad-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Specific hover effects for different ad types */
.ad-card.yellow:hover {
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.25);
}

.ad-card.blue:hover {
  box-shadow: 0 8px 25px rgba(232, 67, 147, 0.25);
}

.ad-card.normal:hover {
  box-shadow: 0 8px 25px rgba(158, 158, 158, 0.25);
}
.ad-card.yellow {
  border: 2px solid #2196F3;
  background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.15);
}
.ad-card.yellow .badge {
  background: linear-gradient(135deg, #2196F3, #1976D2);
  color: #fff;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}
.ad-card.blue {
  border: 2px solid #E84393;
  background: linear-gradient(135deg, #FFF0F5, #FFE4E1);
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.1);
}
.ad-card.blue .badge {
  background: linear-gradient(135deg, #E84393, #FD79A8);
  color: #fff;
  box-shadow: 0 2px 8px rgba(232, 67, 147, 0.3);
}

/* Normal ad card styling */
.ad-card.normal {
  border: 2px solid #9E9E9E;
  background: linear-gradient(135deg, #FAFAFA, #F5F5F5);
  box-shadow: 0 4px 15px rgba(158, 158, 158, 0.15);
}
.badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 6px;
  margin-top: -6px;
  margin-left: 5px;
  z-index: 1;
}

/* Badge styles for different ad types */
.badge-normal {
  background: linear-gradient(135deg, #9E9E9E, #757575);
  color: #fff;
  box-shadow: 0 2px 8px rgba(158, 158, 158, 0.3);
}

.badge-super {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #fff;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.badge-vip {
  background: linear-gradient(135deg, #E84393, #FD79A8);
  color: #fff;
  box-shadow: 0 2px 8px rgba(232, 67, 147, 0.3);
}
.ad-content {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.img{
  width: 120px;
  height: 120px;
  border-radius: 8px;
  flex: 0 0 120px;
  overflow: hidden;
}
.ad-content .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex: 1;
  margin-top: 10px;
}
.details h3 {
  font-family: inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #212121;
  max-width: 50ch;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.details p {
  font-size: 14px;
  color: #757575;
  font-weight: 500;
  margin: 0 0 10px;
  line-height: 1.4;
}
.details .ago {
  width: auto;
  min-width: 80px;
  font-size: 13px;
  font-weight: 400;
  color: #757575;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.meta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: #E84393;
  margin: 20px;
}
.views {
  display: flex;
  align-items: center;
  gap: 15px;
}

.views span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #666;
}

.views i{
  font-size: 20px;
  color: #E84393;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.like-container {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.like-container:hover {
  transform: scale(1.05);
}

.saved-heart-icon {
  font-size: 20px;
  color: #E84393;
  cursor: pointer;
  transition: all 0.3s ease;
}

.saved-heart-icon.saved {
  color: #007bff !important;
  animation: heartBeat 0.3s ease-in-out;
}

/* Error notification styling */
.notification-error {
  background: linear-gradient(135deg, #dc3545, #c82333) !important;
}

@keyframes heartBeat {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Loading state for heart icons */
.saved-heart-icon.loading {
  opacity: 0.7;
  pointer-events: none;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff !important;
  padding: 3px 4px;
  border-radius: 12px;
  font-family: Inter, sans-serif;
  font-size: 12px !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
  animation: pulse 2s infinite;
}

.verified-badge i {
  font-size: 14px;
  color: #fff;
  text-shadow: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 2px 12px rgba(37, 211, 102, 0.5);
  }
  100% {
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
  }
}
.views i:hover{
  transform: scale(1.2);
  color: #C44569;
}
.dots-container {
  position: relative;
  display: inline-block;
}

.dots {
  position: relative;
  cursor: pointer;
}

.dots i{
  font-size: 20px;
  color: #FF6B9D;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.dots i:hover{
  transform: scale(1.2);
  color: #E84393;
}

/* Hide existing report buttons */
.btnreport {
  display: none !important;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 120px;
  padding: 10px 15px;
  margin-top: 5px;
  color: #757575;
  font-family: Inter, sans-serif;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

/* Show report button ONLY when dots are clicked */
.dots.active + .btnreport {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Ensure report button stays hidden on hover */
.ad-card:hover .btnreport:not(.dots.active + .btnreport) {
  display: none !important;
}

/* Debug styles to make sure positioning works */
.meta {
  position: relative;
  z-index: 10;
}

.dots {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.details .title{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.report-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.report-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.report-dropdown .btnreport {
  width: 100%;
  padding: 10px 15px;
  border: none;
  background: none;
  color: #757575;
  font-family: Inter, sans-serif;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.report-dropdown .btnreport:hover {
  background: #FFF0F5;
  color: #E84393;
}

/* Dropdown Menu Styles */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 120px;
  margin-top: 5px;
  overflow: hidden;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 10px 15px;
  background: #fff;
  border: none;
  color: #757575;
  font-family: Inter, sans-serif;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #E84393;
}

.dropdown-item:first-child {
  border-bottom: 1px solid #f0f0f0;
}

/* Remove conflicting btnreport styles - now handled by dropdown */
/* Modal background */
.modal {
  display: none; 
  position: fixed; 
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  background-color: rgba(0,0,0,0.5); /* dark overlay */
  justify-content: center;
  align-items: center;
}

/* Modal box */
.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.modal-content h2 {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #E84393;
  margin-bottom: 25px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}

.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #333;
  background: #fff;
  transition: border-color 0.3s ease;
}

.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #E84393;
  box-shadow: 0 0 0 3px rgba(232, 67, 147, 0.1);
}

.form-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 25px;
}

.btn-cancel,
.btn-submit {
  padding: 12px 24px;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-cancel {
  background: #f8f9fa;
  color: #6c757d;
  border: 1px solid #dee2e6;
}

.btn-cancel:hover {
  background: #e9ecef;
  color: #495057;
}

.btn-submit {
  background: linear-gradient(135deg, #E84393, #FD79A8);
  color: #fff;
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
}

.btn-submit:hover {
  background: linear-gradient(135deg, #C44569, #E84393);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 67, 147, 0.4);
}
.modal-content h2{
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #000000;
  margin-bottom: 20px;
}
.modal-content button{
  text-align: center;
}

/* Close button */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.stats{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 14px;
  color: #757575;
  padding-left: 50px;
}
.account-id,
.account-type,
.all-ads,
.credit{
  width: 100%;
  font-size: 14px;
  color: #757575;
  padding: 16px;
  font-weight: 500;
  margin-top: 10px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
}
.account-id{
  background: linear-gradient(135deg, #FFF0F5, #FFE4E1);
  border: 1px solid #E84393;
}
.account-type{
  background: linear-gradient(135deg, #FFF0F5, #FFE4E1);
  border: 1px solid #FF6B9D;
}
.all-ads{
  background: linear-gradient(135deg, #FFF0F5, #FFE4E1);
  border: 1px solid #FD79A8;
}
.credit{
  background: linear-gradient(135deg, #FFF0F5, #FFE4E1);
  border: 1px solid #C44569;
}
.stats p{
  margin-top: 5px;
  font-size: 24px;
  color: #212121;
}

.form-buttons{
  display: flex;
  justify-content: center;
  margin-top: 20px;
  border-radius: 8px;
}
.my-ads,
.new-ads,
.btn-recover,
.btn-topup{
  width: 120px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.1);
  color: #757575;
  border: 1px solid #d0d0d0;
}
.my-ads:hover,
.new-ads:hover,
.btn-recover:hover,
.btn-topup:hover{
  background: linear-gradient(135deg, #E84393, #FD79A8);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
}
.my-ads{
  border-radius: 8px 0 0 8px;
}
.btn-topup{
  border-radius: 0 8px 8px 0;
}
.my-ads.active,
.new-ads.active,
.btn-recover.active,
.btn-topup.active{
  background: linear-gradient(135deg, #E84393, #FD79A8);
  color: white;
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
}

.form-container {
  display: none;
  margin-top: 20px;
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #ffff;
  margin-left: 50px;

}
.form-container.active {
  display: block;
}

.my-ad-query{
  gap: 10px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
  border: 1px solid #E84393;
  background: linear-gradient(135deg, #FFF0F5, #FFE4E1);
  border-radius: 8px;
  padding: 20px 0px;
}
.my-ad-query h3{
  color: #E84393;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 10px;
}
.my-ad-query button{
  width: 200px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 10px 24px;
  color: #ffff;
  background: linear-gradient(135deg, #E84393, #FD79A8);
  border: none;
  font-family: Inter, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
}

.my-ad-select{
  gap: 20px;
  margin: 0 auto;
  border: 1px solid #cccbcb;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 10px 10px;
  margin-top: 20px;
}
.my-ad-select button{
  width: 100px;
  height: 40px;
  gap: 10px;
  border-radius: 8px;
  color: #ffff;
  background: linear-gradient(135deg, #E84393, #C44569);
  border: none;
  font-family: Inter, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  margin-left: 10px;
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
}
.my-ad-select label {
  width: 200px;
  height: 40px;
  padding: 0 16px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  color: #757575;
}
.my-ad-select input{
  background-color: rgba(0, 0, 0, 0.2);
}
.my-ad-list{
  gap: 20px;
  margin: 0 auto;
  border: 1px solid #E84393;
  background: linear-gradient(135deg, #FFF0F5, #FFE4E1);
  border-radius: 8px;
  padding: 20px 10px;
  margin-top: 20px;
}
.my-ad-list ul{
  list-style: none;
  color: #E84393;
  font-family: Inter, sans-serif;
  font-weight: 700;

}

.create-form{
  padding: 0px 10px;
}

.available_checkboxes {
  width: 10% !important;
}

.create-form input, textarea, .category{
  width: 100%;
  padding: 16px 16px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  color: #757575;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
}
.create-form .input-fields{
  display: flex; 
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.description{
  padding: 16px 16px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  color: #757575;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
}
.contact-field{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.contact-field .country-code {
  width: 100px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 10px 24px;
  color: #757575;
  background-color: rgba(0, 0, 0, 0.1);
  border: none;
  font-family: Inter, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}
.contact-field a{
  width: 100%;
  display: block;
  font-size: 16px;
  align-content: center;
}
.checkbox-field {
  display: flex;   /* inline so it flows in one line */
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
  white-space: nowrap;   /* prevent label from wrapping */
}

.create-form label {
  font-family: Inter, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  color: #000000;
}
.submit{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #E84393, #FD79A8);
  color: #ffff;
  border: none;
  font-family: Inter, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
}

.recover-fields{
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.recover-fields input {
  width: 100%;
  padding: 16px 16px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  color: #757575;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
}
.recover-fields button {
  width: 100px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 10px 24px;
  color: #757575;
  background-color: rgba(0, 0, 0, 0.1);
  border: none;
  font-family: Inter, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}
.recover-fields button:hover{
  background: linear-gradient(135deg, #E84393, #FD79A8);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
}
.topup-fields{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.topup-header h3 {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #E84393;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.topup-header h3 i {
  font-size: 28px;
  color: #E84393;
}

.topup-header p {
  font-family: Inter, sans-serif;
  font-size: 16px;
  color: #757575;
  line-height: 1.5;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(232, 67, 147, 0.15);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #E84393, #FD79A8);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(232, 67, 147, 0.25);
  border-color: #E84393;
}

.card-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.card-header i {
  font-size: 40px;
  margin-bottom: 15px;
  display: block;
}

.card-header h4 {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #212121;
  margin-bottom: 10px;
}

.price {
  font-family: Inter, sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: #E84393;
  background: linear-gradient(135deg, #FFF0F5, #FFE4E1);
  padding: 10px 20px;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.1);
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-features span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #757575;
  padding: 8px 0;
}

.card-features i {
  color: #E84393;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* Specific card themes */
.vip-premium .card-header i {
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.super-ad .card-header i {
  color: #E84393;
  text-shadow: 0 0 10px rgba(232, 67, 147, 0.5);
}

.vip-standard .card-header i {
  color: #9B59B6;
  text-shadow: 0 0 10px rgba(155, 89, 182, 0.5);
}

.verify-profile .card-header i {
  color: #3498DB;
  text-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

/* Ad Detail Page Styles */
.ad-detail-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.see-new-ads-section {
  text-align: center;
  margin-bottom: 30px;
}

.see-new-ads-btn {
  background: linear-gradient(135deg, #E84393, #FD79A8);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 15px 30px;
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
  transition: all 0.3s ease;
  animation: zoomInOut 2s ease-in-out infinite;
}

@keyframes zoomInOut {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.see-new-ads-btn:hover {
  background: linear-gradient(135deg, #C44569, #E84393);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(232, 67, 147, 0.4);
}

.ad-badge-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.ad-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ad-badge.super-ad {
  background: linear-gradient(135deg, #E84393, #FD79A8);
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
}

.ad-badge.normal-ad {
  background: linear-gradient(135deg, #9E9E9E, #757575);
  box-shadow: 0 4px 15px rgba(158, 158, 158, 0.3);
}

.ad-badge.vip-ad {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.ad-image-section {
  margin-bottom: 30px;
}

.ad-image-container {
  position: relative;
  text-align: center;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  overflow: hidden;
}

.magnifier-container {
  position: relative;
  display: inline-block;
  cursor: crosshair;
}

.ad-detail-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.magnifier {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 3px solid #E84393;
  border-radius: 50%;
  background: white;
  display: none;
  pointer-events: none;
  z-index: 1000;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.magnifier img {
  position: absolute;
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.ad-title-section {
  margin-bottom: 20px;
}

.ad-title {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #212121;
  line-height: 1.3;
  margin: 0;
}

.ad-location-section {
  margin-bottom: 25px;
}

.ad-location {
  font-family: Inter, sans-serif;
  font-size: 16px;
  color: #757575;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ad-location i {
  color: #E84393;
}

.ad-category-section {
  margin-bottom: 25px;
}

.ad-category {
  font-family: Inter, sans-serif;
  font-size: 16px;
  color: #757575;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ad-category i {
  color: #E84393;
}

.action-buttons-section {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.action-btn {
  flex: 1;
  min-width: 100px;
  padding: 12px 20px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  background: #fff;
  color: #757575;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.action-btn:hover {
  border-color: #E84393;
  color: #E84393;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.2);
}

.price-likes-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding: 20px;
  background: linear-gradient(135deg, #FFF0F5, #FFE4E1);
  border-radius: 12px;
  border: 1px solid #E84393;
}

.price {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.price-label {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #757575;
}

.price-value {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #E84393;
}

.likes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.likes-count {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #E84393;
}

.likes-label {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #757575;
}

.contact-buttons-section {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.contact-btn {
  flex: 1;
  min-width: 150px;
  padding: 15px 20px;
  border: none;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.call-btn {
  background: linear-gradient(135deg, #E84393, #FD79A8);
  color: #fff;
}

.call-btn:hover {
  background: linear-gradient(135deg, #C44569, #E84393);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 67, 147, 0.3);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #128C7E, #25D366);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.imo-btn {
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  color: #fff;
}

.imo-btn:hover {
  background: linear-gradient(135deg, #F7931E, #FF6B35);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.viber-btn {
  background: linear-gradient(135deg, #665CAC, #8B5CF6);
  color: #fff;
}

.viber-btn:hover {
  background: linear-gradient(135deg, #8B5CF6, #665CAC);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 92, 172, 0.3);
}

.admin-contact-section {
  margin-bottom: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 12px;
  border-left: 4px solid #25D366;
}

.admin-contact-section h3 {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #212121;
  margin: 0 0 10px;
}

.admin-contact-text {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #757575;
  margin: 0 0 15px;
  line-height: 1.5;
}

.admin-whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  max-width: 200px;
}

.admin-whatsapp-btn:hover {
  background: linear-gradient(135deg, #128C7E, #25D366);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.ad-description-section {
  margin-bottom: 30px;
}

.ad-description-section h3 {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #212121;
  margin-bottom: 15px;
}

.ad-description {
  font-family: Inter, sans-serif;
  font-size: 16px;
  color: #757575;
  line-height: 1.6;
  margin: 0;
}

/* Disclaimer Section Styles */
.disclaimer-section {
  background: linear-gradient(135deg, #FFF0F5, #FFE4E1);
  border-top: 3px solid #E84393;
  margin-top: 40px;
  padding: 40px 0;
}

.disclaimer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.disclaimer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.disclaimer-sinhala,
.disclaimer-english {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.1);
  border: 1px solid #E84393;
}

.disclaimer-sinhala h3,
.disclaimer-english h3 {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #E84393;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 2px solid #E84393;
  padding-bottom: 10px;
}

.disclaimer-sinhala p,
.disclaimer-english p {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #757575;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
}

.disclaimer-sinhala p:last-child,
.disclaimer-english p:last-child {
  margin-bottom: 0;
}

.disclaimer-sinhala {
  direction: ltr;
  text-align: left;
}
.topup-fields p, ul {
  font-size: 16px;  
  width: 100%;
  font-family: Inter, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  color: #000;
}
.topup-fields ul{
  padding: 15px;
}
.topup-buttons{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.topup-buttons button{
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 10px 24px;
  color: #ffff;
  border: none;
  font-family: Inter, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}
.topup-whatsapp{
  background: linear-gradient(135deg, #E84393, #FD79A8);
  color: #ffff;
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
}
.topup-bank{
  background: linear-gradient(135deg, #FF6B9D, #C44569);
  color: #ffff;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

/* Login and OTP Styles */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 236px); /* Account for header and footer */
  padding: 20px;
}

.login-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 40px;
  width: 100%;
  max-width: 400px;
  border: 1px solid #E0E0E0;
}

.login-header {
  text-align: center;
  margin-bottom: 30px;
}

.login-header h2 {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #E84393;
  margin-bottom: 10px;
}

.login-header p {
  font-family: Inter, sans-serif;
  font-size: 16px;
  color: #757575;
  line-height: 1.5;
}

.phone-input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.country-code-select {
  flex: 0 0 80px;
}

.country-code-select .country-code {
  width: 100%;
  height: 50px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 0 12px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  color: #757575;
  background-color: #fff;
}

.phone-input {
  flex: 1;
}

.phone-input input {
  width: 100%;
  height: 50px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 0 16px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #212121;
}

.phone-input input:focus,
.country-code-select .country-code:focus {
  outline: none;
  border-color: #E84393;
  box-shadow: 0 0 0 3px rgba(232, 67, 147, 0.1);
}

.login-submit-btn {
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, #E84393, #FD79A8);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
}

.login-submit-btn:hover {
  background: linear-gradient(135deg, #C44569, #E84393);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 67, 147, 0.4);
}

.login-footer {
  text-align: center;
  margin-top: 25px;
}

.login-footer p {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #757575;
  line-height: 1.5;
}

.login-footer a {
  color: #E84393;
  text-decoration: none;
  font-weight: 500;
}

.login-footer a:hover {
  text-decoration: underline;
}

/* OTP Styles */
.otp-form {
  margin-bottom: 25px;
}

.otp-input-group {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.otp-input {
  width: 50px;
  height: 50px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #212121;
  background-color: #fff;
  transition: border-color 0.3s ease;
}

.otp-input:focus {
  outline: none;
  border-color: #E84393;
  box-shadow: 0 0 0 3px rgba(232, 67, 147, 0.1);
}

.otp-timer {
  text-align: center;
  margin-bottom: 20px;
}

.otp-timer p {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #757575;
}

.otp-footer {
  text-align: center;
}

.resend-btn {
  background: none;
  border: none;
  color: #E84393;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 15px;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.resend-btn:hover:not(:disabled) {
  background-color: rgba(232, 67, 147, 0.1);
  transform: translateY(-1px);
}

.resend-btn:disabled {
  color: #ccc;
  cursor: not-allowed;
}

.otp-footer p {
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: #757575;
  margin: 0;
}

/* Pagination Styles */
.pagination-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #E0E0E0;
}

.pagination-info {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #757575;
  text-align: center;
}

.pagination-info strong {
  color: #E84393;
  font-weight: 600;
}

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid #E0E0E0;
  background: #fff;
  color: #757575;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.pagination-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #E84393, #FD79A8);
  color: #fff;
  border-color: #E84393;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
}

.pagination-btn:disabled,
.pagination-btn.disabled {
  background: #f5f5f5;
  color: #ccc;
  cursor: not-allowed;
  border-color: #E0E0E0;
}

.page-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-number {
  width: 40px;
  height: 40px;
  border: 1px solid #E0E0E0;
  background: #fff;
  color: #757575;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.page-number:hover {
  background: linear-gradient(135deg, #FFF0F5, #FFE4E1);
  border-color: #E84393;
  color: #E84393;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.2);
  text-decoration: none;
}

.page-number.active {
  background: linear-gradient(135deg, #E84393, #FD79A8);
  color: #fff;
  border-color: #E84393;
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
}

.page-dots {
  color: #757575;
  font-family: Inter, sans-serif;
  font-weight: 500;
  padding: 0 8px;
}



/* Page Content Styles */
.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px 0;
  background: linear-gradient(135deg, #FFF0F5, #FFE4E1);
  border-radius: 15px;
  border: 1px solid #E84393;
}

.page-header h1 {
  font-size: 2.5rem;
  color: #E84393;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-header .page-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
}

.content-section {
  margin-bottom: 40px;
  padding: 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #E0E0E0;
}

.content-section h2 {
  color: #E84393;
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 2px solid #E84393;
  padding-bottom: 10px;
}

.content-section h3 {
  color: #333;
  font-size: 1.3rem;
  margin: 20px 0 15px 0;
  font-weight: 600;
}

.content-section p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 1rem;
}

.content-section ul, .content-section ol {
  margin: 15px 0;
  padding-left: 25px;
}

.content-section li {
  color: #555;
  line-height: 1.6;
  margin-bottom: 8px;
}

.contact-info {
  background: #F8F9FA;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #E84393;
}

.contact-info p {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  color: #E84393;
  width: 20px;
}

.last-updated {
  text-align: center;
  font-style: italic;
  color: #888;
  margin-top: 20px;
}

/* FAQ Styles */
.faq-section {
  margin-bottom: 40px;
}

.faq-section h2 {
  color: #E84393;
  font-size: 1.8rem;
  margin-bottom: 25px;
  text-align: center;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  background: #F8F9FA;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #E84393;
  color: white;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-question i {
  color: #E84393;
  transition: all 0.3s ease;
}

.faq-question:hover i {
  color: white;
}

.faq-answer {
  background: white;
  padding: 20px;
  display: none;
  border-top: 1px solid #E0E0E0;
}

.faq-answer p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* Services Styles */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.service-card {
  background: white;
  border: 2px solid #E0E0E0;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(232, 67, 147, 0.2);
  border-color: #E84393;
}

.service-card.featured {
  border-color: #E84393;
  box-shadow: 0 5px 20px rgba(232, 67, 147, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #E84393, #FD79A8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  color: #E84393;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.service-features li {
  padding: 8px 0;
  color: #555;
  position: relative;
  padding-left: 25px;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #E84393;
  font-weight: bold;
}

.service-price {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #E0E0E0;
}

.price {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #E84393;
}

.period {
  color: #888;
  font-size: 0.9rem;
}

.additional-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.service-item {
  background: #F8F9FA;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #E0E0E0;
}

.service-item i {
  font-size: 2.5rem;
  color: #E84393;
  margin-bottom: 15px;
}

.service-item h3 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-item p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.service-cost {
  color: #E84393;
  font-weight: 600;
  font-size: 0.9rem;
}

.business-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.feature-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #E0E0E0;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(232, 67, 147, 0.1);
}

.feature-item i {
  font-size: 2.5rem;
  color: #E84393;
  margin-bottom: 15px;
}

.feature-item h3 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-item p {
  color: #666;
  line-height: 1.5;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.benefit-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #E0E0E0;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(232, 67, 147, 0.1);
}

.benefit-item i {
  font-size: 2.5rem;
  color: #E84393;
  margin-bottom: 15px;
}

.benefit-item h3 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.benefit-item p {
  color: #666;
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 30px 0;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #E84393, #FD79A8);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(232, 67, 147, 0.3);
}

.btn-secondary {
  background: white;
  color: #E84393;
  border: 2px solid #E84393;
}

.btn-secondary:hover {
  background: #E84393;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(232, 67, 147, 0.3);
}

/* About Us Specific Styles */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.feature-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #E0E0E0;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(232, 67, 147, 0.1);
}

.feature-item i {
  font-size: 2.5rem;
  color: #E84393;
  margin-bottom: 15px;
}

.feature-item h3 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-item p {
  color: #666;
  line-height: 1.5;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.value-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #E0E0E0;
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(232, 67, 147, 0.1);
}

.value-item h3 {
  color: #E84393;
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.value-item i {
  color: #E84393;
}

.value-item p {
  color: #666;
  line-height: 1.5;
}

/* Return Policy Specific Styles */
.refund-category {
  background: #F8F9FA;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  border-left: 4px solid #E84393;
}

.refund-category h3 {
  color: #E84393;
  margin-bottom: 15px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.step {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #E0E0E0;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #E84393, #FD79A8);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 15px;
}

.step h3 {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.step p {
  color: #666;
  line-height: 1.5;
  font-size: 0.9rem;
}

.cancellation-info {
  background: #F8F9FA;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  border-left: 4px solid #E84393;
}

.cancellation-info h3 {
  color: #E84393;
  margin-bottom: 15px;
}

/* How to Publish Page Styles */
.steps-container {
  margin: 30px 0;
}

.step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #E0E0E0;
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(232, 67, 147, 0.15);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #E84393, #FD79A8);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h3 {
  color: #E84393;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.step-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.step-content ul {
  margin: 15px 0;
  padding-left: 20px;
}

.step-content li {
  color: #555;
  line-height: 1.6;
  margin-bottom: 8px;
}

.step-note {
  background: #FFF3CD;
  border: 1px solid #FFEAA7;
  border-radius: 8px;
  padding: 15px;
  margin-top: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.step-note i {
  color: #856404;
  margin-top: 2px;
}

.step-note strong {
  color: #856404;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.pricing-card {
  background: white;
  border: 2px solid #E0E0E0;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(232, 67, 147, 0.2);
  border-color: #E84393;
}

.pricing-card.featured {
  border-color: #E84393;
  box-shadow: 0 5px 20px rgba(232, 67, 147, 0.15);
}

.card-header {
  margin-bottom: 20px;
}

.card-header i {
  font-size: 2.5rem;
  color: #E84393;
  margin-bottom: 10px;
}

.card-header h3 {
  color: #E84393;
  font-size: 1.5rem;
  margin: 10px 0;
  font-weight: 600;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #E84393;
  margin-bottom: 20px;
}

.features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.features li {
  padding: 8px 0;
  color: #555;
  position: relative;
  padding-left: 25px;
}

.features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #E84393;
  font-weight: bold;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.tip-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #E0E0E0;
  transition: all 0.3s ease;
}

.tip-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(232, 67, 147, 0.1);
}

.tip-item i {
  font-size: 2.5rem;
  color: #E84393;
  margin-bottom: 15px;
}

.tip-item h3 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.tip-item p {
  color: #666;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    align-self: center;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .tips-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */

#footer{
  width: 100%;
  height: 156px;
  background: linear-gradient(135deg, #C44569, #E84393);
  margin-top: 30px;
}

.footer-menu {
  text-align: center;
  padding-top: 20px ;
  color: #FFFFFF;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;  
  justify-content: center;  
  flex-wrap: wrap; /* keeps it neat on small screens */
  gap: 15px; /* spacing between items */
}

.footer-menu li {
  font-family: Inter, sans-serif;
  font-size: 16px;
  color: #FFFFFF;
  cursor: pointer;
  font-weight: 400;
}

.line {
  width: 80%;
  height: 1px;
  background: #757575; /* light gray divider */
  margin: 20px auto; /* auto centers it */
  border-radius: 2px; /* optional: makes it smoother */
}


.rights {
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  padding: 10px 0;
}

.menu-toggle {
  display: none;
  position: absolute;              /* positioned relative to navbar */
  top: 20px;                      /* distance from top of navbar */
  left: 20px;                     /* distance from left of navbar */
  color: #fff;
  font-size: 28px;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  z-index: 1100;                  /* above sidebar */
  background: #4B6AC2;
}

.mobileShow{
  display: none !important;
}

/* Ensure menu toggle moves with navbar */
button.menu-toggle,
.header .menu-toggle,
.menu-toggle {
  position: absolute !important;
  top: 20px !important;
  left: 20px !important;
  z-index: 1100 !important;
}

/* 🔥 Responsive Breakpoints */

@media (max-width: 1450px) {
  .menu{
    width: 300px;
  }

  .meta{
    margin: 10px 0;
  }

  .img{
    width: 100px;
    flex: 0 0 100px;
  }


}

@media (max-width: 1300px) {

  .ad-card{
    width: 100%;
  }
  .ad-content{
    margin: 0;
    flex-wrap: wrap;
  }

  .ad-content .details{
    max-width: calc(100% - 100px);
    flex: 0 0 calc(100% - 100px);
  }

  .ad-content .details p{
    overflow: hidden;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .img{
    width: 80px;
    flex: 0 0 80px;
    height: 80px;
  }

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

  .badge{
    margin-top: -6px;
  }
}

@media (max-width: 1155px) {
  .ads-grid {
    
    justify-content: center;
  }
  .ad-card.yellow, .ad-card.blue {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .mobileShow{
    display: flex !important;
    padding-top: 10px;
  }
  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #4B6AC2;
    color: #fff;
    padding: 0;
    border-radius: 6px;
    z-index: 1100; /* stay above sidebar */
    position: absolute !important; /* positioned relative to navbar */
    top: 20px !important; /* distance from top of navbar */
    left: 20px !important; /* distance from left of navbar */
  }

  .menu {
    position: fixed; /* better than absolute for sidebar */
    top: 0;
    left: 0;
    height: 100%;
    max-width: 500px;
    width: 80%;
    transform: translateX(-100%);
    z-index: 1000;
    background: #f8f9fa;
    padding: 20px;
    border-right: 1px solid #ddd;
    transition: transform 0.3s ease;
  }

  .menu.open {
    transform: translateX(0); /* slide in */
  }
  .btnPublish{
    margin-top: 50px;
  }
  .stats{
    flex-wrap: wrap;
    padding: 0;
  }
  .form-container{
    margin: 20px 0 0;
  }
  .account-id, .account-type, .all-ads, .credit{
    flex: 0 0 calc(50% - 10px);
  }

  .ad-content .meta{
    display: none !important;
  }
}


@media (max-width: 768px) {

  .ads-grid {
    flex-direction: column;
    justify-content: center;
  }
  .ad-card {
    width: 100%;
  }
  .content {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .container-fluid {
    flex-direction: column;
  }
  .header{
    display: flex;
    justify-content: space-between;
  }
  #content{
    display: flex;
    flex-wrap: wrap;
  }
  
  .logo {
    max-width: 220px;
    height: 45px;
  }
  
  .logo-image {
    max-height: 63px;
  }
}

/* 380px to 480px range - Logo visible with responsive text */
@media (max-width: 480px) and (min-width: 380px) {

  .badge-desktop {
    display: none !important
  }

  .disclaimer-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
  }

.mobile-time {
  position: absolute;
  left: 0;
  font-size: 12px;
  color: #757575;
  margin-top: 2px;
  font-weight: 400;
  background: #fff;
  margin-left: 5%;
}
.ago{
  display: none;
}
  .ad-title{
    font-size: 15px !important;
  }

  #main {
    padding: 0px; /* Adjust for fixed header */
  }

  .ads-grid{
    padding: 10px !important;
  }

  .header {
    position: relative;
  }
  
  .header .content {
    padding-left: 50px; /* Make room for menu toggle */
    padding-right: 10px; /* Prevent button cutoff */
    gap: 8px; /* Reduce gap between components */
  }
  
  .menu-toggle {
    position: absolute !important;
    top: 20px !important;
    left: 20px !important;
    z-index: 1100 !important;
  }
  
  .logo {
    max-width: 160px;
    height: 36px;
    flex-shrink: 0;
    margin-left: 7%;
  }
  
  .logo-image {
    max-height: 48px;
  }
  
  .website-name h1 {
    font-size: 0.7rem; /* Responsive size for this range */
    letter-spacing: 0.3px;
    margin-left: -12px;
  }
  
  .btn {
    gap: 6px; /* Reduce gap between buttons */
  }
  
  .btnRefresh,
  .btnLogin {
    padding: 7px 14px;
    font-size: 0.8rem;
  }
  
  .btnRefresh {
    width: 75px;
    height: 33px;
  }
  
  .btnLogin {
    width: 110px;
    height: 33px;
  }
  
  /* OTP input responsive styles for 380px-480px */
  .otp-input-group {
    gap: 6px;
    margin-bottom: 15px;
  }
  
  .otp-input {
    width: 35px;
    height: 35px;
    font-size: 16px;
    border-radius: 6px;
  }
  
  .login-card {
    padding: 20px 15px;
    margin: 10px;
  }
  
  /* Dashboard checkbox field responsive for 380px-480px */
  .checkbox-field {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  
  .checkbox-item {
    width: 100%;
    margin-bottom: 5px;
    display: -webkit-box;
    gap: inherit;

  }
  
  .checkbox-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 8px 12px;
    background: linear-gradient(135deg, #FFF0F5, #FFE4E1);
    border-radius: 6px;
    border: 1px solid #E84393;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    font-weight: 500;
  }
  
  .checkbox-item label:hover {
    background: linear-gradient(135deg, #FFE4E1, #FFD1DC);
    border-color: #FD79A8;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(232, 67, 147, 0.2);
  }
  
  .checkbox-item input[type="checkbox"] {
    margin: 0;
    transform: scale(1.1);
    margin-top: 10px;
  }
  
  .checkbox-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
  }
  
  .checkbox-item input[type="checkbox"]:checked + label {
    background: linear-gradient(135deg, #E84393, #FD79A8);
    color: #fff;
    border-color: #C44569;
  }
  
  .checkbox-item input[type="checkbox"]:checked + label i {
    color: #fff;
  }
  
  /* Footer responsive for 380px-480px */
  #footer {
    height: 100px;
  }
  
  .footer-menu {
    padding-top: 15px;
  }
  
  .footer-menu ul {
    gap: 5px !important;
  }
  
  .footer-menu li {
    font-size: 12px;
    white-space: nowrap;
  }
  
  .line {
    margin: 15px auto;
  }
  
  .rights {
    font-size: 12px;
    padding: 8px 0;
  }
  
  /* Dashboard My Ads responsive for 380px-480px */
  .dashboard .ads-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 10px;
  }
  
  .dashboard .ad-item {
    width: 80%;
    max-width: 80%;
    margin-left: 10%;
  }
  
  .dashboard .ad-image {
    max-height: 200px;
  }
  
  .dashboard .ad-details {
    padding: 12px;
    gap: 10px;
  }
  
  .dashboard .ad-header h4 {
    font-size: 15px;
  }

  .verified-badge {
    font-size: 8px !important;
  }
  .meta {
    margin: 0px 0 !important;
}
.mobileShow {
  padding-top: 0px !important;
}
.views {
  margin-left: 12% !important;
}

.badge {
  margin-left: -15% !important;
}

.badge-normal {
  font-size: 8px !important;
  padding: 2% !important;
}
}

@media (max-width: 379px) {

  .form-container,
  #main{
    padding: 30px 15px;
  }

  .ads-grid{
    padding: 20px 0;
  }

  .account-id, .account-type, .all-ads, .credit{
    flex: 0 0 calc(100% - 10px);
  }
  
  .header {
    position: relative;
  }
  
  .header .content {
    padding-left: 45px; /* Make room for menu toggle */
    padding-right: 8px; /* Prevent button cutoff */
    gap: 6px; /* Further reduce gap */
  }
  
  .menu-toggle {
    position: absolute !important;
    top: 20px !important;
    left: 20px !important;
    z-index: 1100 !important;
  }
  
  .logo {
    max-width: 140px;
    height: 32px;
    flex-shrink: 0;
    margin-left: 25px;
  }
  
  .logo-image {
    max-height: 42px;
  }
  
  .website-name h1 {
    font-size: 0.7rem; /* Smaller text for smaller screens */
    letter-spacing: 0.3px;
  }
  
  .btn {
    gap: 4px; /* Minimal gap between buttons */
  }
  
  .btnRefresh,
  .btnLogin {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  
  .btnRefresh {
    width: 65px;
    height: 30px;
  }
  
  .btnLogin {
    width: 95px;
    height: 30px;
  }
  
  /* OTP input responsive styles for 320px-379px */
  .otp-input-group {
    gap: 4px;
    margin-bottom: 15px;
  }
  
  .otp-input {
    width: 30px;
    height: 30px;
    font-size: 14px;
    border-radius: 5px;
  }
  
  .login-card {
    padding: 15px 10px;
    margin: 5px;
  }
  
  /* Dashboard checkbox field responsive for 320px-379px */
  .checkbox-field {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  
  .checkbox-item {
    width: 100%;
    margin-bottom: 4px;
  }
  
  .checkbox-item label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    padding: 6px 10px;
    background: linear-gradient(135deg, #FFF0F5, #FFE4E1);
    border-radius: 5px;
    border: 1px solid #E84393;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    font-weight: 500;
  }
  
  .checkbox-item label:hover {
    background: linear-gradient(135deg, #FFE4E1, #FFD1DC);
    border-color: #FD79A8;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(232, 67, 147, 0.2);
  }
  
  .checkbox-item input[type="checkbox"] {
    margin: 0;
    transform: scale(1.0);
  }
  
  .checkbox-item i {
    font-size: 14px;
    width: 18px;
    text-align: center;
  }
  
  .checkbox-item input[type="checkbox"]:checked + label {
    background: linear-gradient(135deg, #E84393, #FD79A8);
    color: #fff;
    border-color: #C44569;
  }
  
  .checkbox-item input[type="checkbox"]:checked + label i {
    color: #fff;
  }
  
  /* Footer responsive for 320px-379px */
  #footer {
    height: 90px;
  }
  
  .footer-menu {
    padding-top: 12px;
  }
  
  .footer-menu ul {
    gap: 6px;
    flex-wrap: nowrap;
  }
  
  .footer-menu li {
    font-size: 11px;
    white-space: nowrap;
  }
  
  .line {
    margin: 12px auto;
  }
  
  .rights {
    font-size: 11px;
    padding: 6px 0;
  }
  
  /* Dashboard My Ads responsive for 320px-379px */
  .dashboard .ads-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 8px;
  }
  
  .dashboard .ad-item {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  
  .dashboard .ad-image {
    max-height: 180px;
  }
  
  .dashboard .ad-details {
    padding: 10px;
    gap: 8px;
  }
  
  .dashboard .ad-header h4 {
    font-size: 14px;
  }
 
  .btnPublish,
  .btnSearch,
  .btnSubscribe,
  .btnSubscribe1,
  .btnSubscribe2 {
    width: 100%;
  }
  
  .btn-dashboard {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn-dashboard button {
    width: 100%;
  }
  .search {
    width: 100%;
    height: auto;
    padding: 10px;
  }
  .search input {
    width: 100%;
  }
  .savedButtons {
    width: 100%;
  }
  .header{
    display: flex;
    justify-content: space-between;
  }
  
  /* Login responsive styles */
  .login-card {
    padding: 20px;
    margin: 10px;
  }
  
  .phone-input-group {
    flex-direction: column;
    gap: 10px;
  }
  
  .country-code-select {
    flex: none;
  }
  
  .otp-input-group {
    gap: 5px;
  }
  
  .otp-input {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  /* Pricing cards responsive styles */
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .pricing-card {
    padding: 20px;
  }
  
  .card-header i {
    font-size: 32px;
  }
  
  .price {
    font-size: 24px;
    padding: 8px 16px;
  }
  
  /* Pagination responsive styles */
  .pagination-container {
    padding: 15px;
    margin-top: 20px;
  }
  
  .pagination-controls {
    gap: 10px;
  }
  
  .page-number {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
  
  .pagination-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
  
  /* Ad detail responsive styles */
  .ad-detail-container {
    padding: 15px;
  }
  
  /* Ad detail page with sidebar responsive */
  #content {
    margin-left: 0;
  }
  
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    max-width: 500px;
    width: 80%;
    transform: translateX(-100%);
    z-index: 1000;
    background: #f8f9fa;
    padding: 20px;
    border-right: 1px solid #ddd;
    transition: transform 0.3s ease;
  }

  .menu.open {
    transform: translateX(0);
  }
  
  .btnPublish {
    margin-top: 50px;
  }
  
  .ad-title {
    font-size: 22px;
  }
  
  .action-buttons-section {
    flex-direction: column;
  }
  
  .contact-buttons-section {
    flex-direction: column;
  }
  
  .price-likes-section {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .magnifier {
    width: 100px;
    height: 100px;
  }
  
  .magnifier img {
    width: 200px;
    height: 200px;
  }
  
  /* Disclaimer responsive styles */
  .disclaimer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .disclaimer-sinhala,
  .disclaimer-english {
    padding: 20px;
  }
  
  .disclaimer-sinhala h3,
  .disclaimer-english h3 {
    font-size: 18px;
  }
  
  .disclaimer-sinhala p,
  .disclaimer-english p {
    font-size: 13px;
  }
}

/* Dashboard My Ads Styles */
.dashboard .ads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.dashboard .ad-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  height: fit-content;
}

.dashboard .ad-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.dashboard .ad-image {
  width: 100%;
  max-height: 250px;
  overflow: hidden;
  position: relative;
  background: #f8f9fa;
}

.dashboard .ad-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.dashboard .no-image {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  color: #666;
  font-size: 14px;
}

.dashboard .ad-details {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dashboard .ad-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.dashboard .ad-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
  flex: 1;
}

.dashboard .ad-status {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

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

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

.dashboard .ad-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dashboard .info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.dashboard .info-label {
  color: #666;
  font-weight: 500;
}

.dashboard .info-value {
  color: #333;
  font-weight: 600;
}

.dashboard .info-value.price {
  color: #e84393;
  font-size: 14px;
}

.dashboard .type-badge {
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

.dashboard .type-badge.normal {
  background: #e9ecef;
  color: #495057;
}

.dashboard .type-badge.super {
  background: #fff3cd;
  color: #856404;
}

.dashboard .type-badge.vip {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #856404;
  box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.dashboard .ad-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.dashboard .stat-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #666;
}

.dashboard .stat-item i {
  color: #e84393;
  font-size: 14px;
}

.dashboard .stat-item span {
  font-weight: 600;
  color: #333;
}

.dashboard .ad-actions {
  margin-top: auto;
  padding-top: 10px;
}

.dashboard .btn-delete {
  background: #dc3545;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  justify-content: center;
}

.dashboard .btn-delete:hover {
  background: #c82333;
}

/* Deleted ads styling */
.dashboard .ad-item.deleted {
  opacity: 0.8;
  border: 2px dashed #dc3545;
}

.dashboard .ad-item.deleted:hover {
  opacity: 1;
}

.dashboard .ad-status.deleted {
  background: #f8d7da;
  color: #721c24;
}

.dashboard .btn-restore {
  background: #28a745;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  justify-content: center;
}

.dashboard .btn-restore:hover {
  background: #218838;
}

.dashboard .recover-header {
  text-align: center;
  margin-bottom: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

.dashboard .recover-header h3 {
  margin: 0 0 10px 0;
  color: #333;
  font-size: 18px;
}

.dashboard .recover-header p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

/* Verified button styling */
.dashboard .btnVerifyProfile.verified {
  background: #28a745 !important;
  color: white !important;
  cursor: not-allowed;
  opacity: 0.8;
}

.dashboard .btnVerifyProfile.verified:hover {
  background: #28a745 !important;
  transform: none;
}

.dashboard .btnVerifyProfile.verified i {
  color: #ffffff !important;
}

/* Unverified button styling */
.dashboard .btnVerifyProfile:not(.verified) {
  background: linear-gradient(135deg, #dc3545, #e74c3c) !important;
  color: white !important;
}

.dashboard .btnVerifyProfile:not(.verified):hover {
  background: linear-gradient(135deg, #c82333, #dc3545) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* Verification checkbox styling */
.dashboard .verification-field {
  margin: 20px 0;
  padding: 15px;
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  animation: fadeIn 0.3s ease-in;
}

.dashboard .verification-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.dashboard .verification-alert input[type="checkbox"] {
  margin-top: 2px;
  transform: scale(1.2);
}

.dashboard .verification-alert label {
  color: #856404;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  margin: 0;
}

.dashboard .verification-alert label:hover {
  color: #6c5ce7;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dashboard .no-ads {
  text-align: center;
  padding: 40px 20px;
  color: #666;
}

.dashboard .no-ads p {
  font-size: 16px;
  margin: 0;
}

.dashboard .alert {
  padding: 12px 16px;
  margin-bottom: 20px;
  border-radius: 4px;
  font-size: 14px;
}

.dashboard .alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.dashboard .alert-danger {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.dashboard .pagination {
  margin-top: 30px;
  text-align: center;
}

.dashboard .pagination .pagination-links {
  display: inline-flex;
  gap: 5px;
}

.dashboard .pagination .pagination-links a,
.dashboard .pagination .pagination-links span {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  background: #fff;
}

.dashboard .pagination .pagination-links .current {
  background: #e84393;
  color: white;
  border-color: #e84393;
}

.dashboard .pagination .pagination-links a:hover {
  background: #f8f9fa;
}

/* Extra small screens - 320px and below */
@media (max-width: 320px) {
  .header .content {
    padding-left: 40px;
    padding-right: 5px;
    gap: 4px;
  }
  
  .menu-toggle {
    position: absolute !important;
    top: 20px !important;
    left: 20px !important;
    z-index: 1100 !important;
  }
  
  .logo {
    max-width: 120px;
    height: 28px;
  }
  
  .logo-image {
    max-height: 36px;
  }
  
  .website-name h1 {
    font-size: 0.85rem;
    letter-spacing: 0.2px;
  }
  
  .btnRefresh,
  .btnLogin {
    padding: 5px 10px;
    font-size: 0.7rem;
  }
  
  .btnRefresh {
    width: 55px;
    height: 28px;
  }
  
  .btnLogin {
    width: 85px;
    height: 28px;
  }
  
  /* OTP input responsive styles for 320px and below */
  .otp-input-group {
    gap: 3px;
    margin-bottom: 12px;
  }
  
  .otp-input {
    width: 28px;
    height: 28px;
    font-size: 13px;
    border-radius: 4px;
  }
  
  .login-card {
    padding: 12px 8px;
    margin: 3px;
  }
  
  /* Dashboard checkbox field responsive for 320px and below */
  .checkbox-field {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
  
  .checkbox-item {
    width: 100%;
    margin-bottom: 3px;
  }
  
  .checkbox-item label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    padding: 5px 8px;
    background: linear-gradient(135deg, #FFF0F5, #FFE4E1);
    border-radius: 4px;
    border: 1px solid #E84393;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    font-weight: 500;
  }
  
  .checkbox-item label:hover {
    background: linear-gradient(135deg, #FFE4E1, #FFD1DC);
    border-color: #FD79A8;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(232, 67, 147, 0.2);
  }
  
  .checkbox-item input[type="checkbox"] {
    margin: 0;
    transform: scale(0.9);
  }
  
  .checkbox-item i {
    font-size: 12px;
    width: 16px;
    text-align: center;
  }
  
  .checkbox-item input[type="checkbox"]:checked + label {
    background: linear-gradient(135deg, #E84393, #FD79A8);
    color: #fff;
    border-color: #C44569;
  }
  
  .checkbox-item input[type="checkbox"]:checked + label i {
    color: #fff;
  }
  
  /* Dashboard My Ads responsive for 320px and below */
  .dashboard .ads-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 5px;
  }
  
  .dashboard .ad-item {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  
  .dashboard .ad-image {
    max-height: 160px;
  }
  
  .dashboard .ad-details {
    padding: 8px;
    gap: 6px;
  }
  
  .dashboard .ad-header h4 {
    font-size: 13px;
  }

  .verified-badge {
    font-size: 8px !important;
  }

  .mobileShow {
    gap: 0px !important;
  }
  
  /* Footer responsive for 320px and below */
  #footer {
    height: 80px;
  }
  
  .footer-menu {
    padding-top: 10px;
  }
  
  .footer-menu ul {
    gap: 4px;
    flex-wrap: nowrap;
  }
  
  .footer-menu li {
    font-size: 10px;
    white-space: nowrap;
  }
  
  .line {
    margin: 10px auto;
  }
  
  .rights {
    font-size: 10px;
    padding: 5px 0;
  }
}

/* CKEditor Styling */
.ckeditor-container {
  margin: 10px 0;
  width: 100%;
}

.ck-editor {
  width: 100% !important;
}

.ck-editor__editable {
  min-height: 200px !important;
  border: 2px solid #E0E0E0 !important;
  border-radius: 8px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  padding: 15px !important;
  background: #fff !important;
  transition: border-color 0.3s ease !important;
}

.ck-editor__editable:focus {
  border-color: #E84393 !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(232, 67, 147, 0.1) !important;
}

.ck-editor__top {
  border: 2px solid #E0E0E0 !important;
  border-bottom: none !important;
  border-radius: 8px 8px 0 0 !important;
  background: linear-gradient(135deg, #FFF0F5, #FFE4E1) !important;
}

.ck-editor__main {
  border-radius: 0 0 8px 8px !important;
}

.ck-toolbar__separator {
  background: #E84393 !important;
}

.ck-button {
  color: #757575 !important;
  transition: all 0.3s ease !important;
}

.ck-button:hover {
  background: rgba(232, 67, 147, 0.1) !important;
  color: #E84393 !important;
}

.ck-button.ck-on {
  background: linear-gradient(135deg, #E84393, #FD79A8) !important;
  color: #fff !important;
}

.ck-button.ck-on:hover {
  background: linear-gradient(135deg, #D63384, #E84393) !important;
}

.ck-dropdown__panel {
  border: 1px solid #E0E0E0 !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.ck-list__item {
  color: #757575 !important;
  transition: all 0.3s ease !important;
}

.ck-list__item:hover {
  background: rgba(232, 67, 147, 0.1) !important;
  color: #E84393 !important;
}

.ck-list__item.ck-on {
  background: linear-gradient(135deg, #E84393, #FD79A8) !important;
  color: #fff !important;
}

/* Mobile responsive CKEditor */
@media (max-width: 768px) {
  .ck-editor__editable {
    min-height: 150px !important;
    font-size: 13px !important;
    padding: 10px !important;
  }
  
  .ck-toolbar {
    flex-wrap: wrap !important;
  }
  
  .ck-toolbar__separator {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .ck-editor__editable {
    min-height: 120px !important;
    font-size: 12px !important;
    padding: 8px !important;
  }
  
  .ck-toolbar__items {
    flex-wrap: wrap !important;
  }
}

