
/* Toggle Switch Styles */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 20px; width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #00aaff;
}
input:checked + .slider:before {
  transform: translateX(24px);
}

/* DARK MODE STYLES */
body.dark {
  background-color: #121212;
  color: #e0e0e0;
}
body.dark .section {
  background-color: #1c1c1c;
}
body.dark .section-title {
  color: #00aaff;
}
body.dark .cta-section {
  background: linear-gradient(135deg, #004466, #002233);
}
body.dark .cta-button.pulse {
  background: #00aaff;
  color: white;
}
body.dark .cta-button.secondary {
  border-color: #00aaff;
  color: #00aaff;
}
body.dark .footer-content {
  background-color: #1a1a1a;
}
body.dark .achievement-card {
  background-color: #222;
  color: #eee;
}
body.dark .benefit-item {
  background: rgba(0, 170, 255, 0.1);
  color: #eee;
}




body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background-color: #f1f9ff;
  margin: 0;
  padding: 0;
  color: #333;
}

.upload-container {
  max-width: 600px;
  background-color: white;
  margin: 50px auto;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.upload-container:hover {
  transform: translateY(-5px);
}

.upload-container h2 {
  text-align: center;
  color: #00aaff;
  margin-bottom: 25px;
}

label {
  font-weight: 600;
  margin-top: 12px;
  display: block;
}

input[type="text"],
input[type="url"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
}

.total-display {
  margin: 15px 0;
  font-size: 17px;
  color: #0077cc;
}

.submit-btn {
  width: 100%;
  background-color: #00aaff;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 170, 255, 0.3);
  transition: 0.3s ease;
}

.submit-btn:hover {
  background-color: #0090dd;
  transform: scale(1.03);
}

.wallet-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  background-color: #eafaff;
  padding: 10px 15px;
  border-radius: 10px;
}

.fund-btn {
  background-color: #0099cc;
  color: white;
  padding: 8px 14px;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.fund-btn:hover {
  background-color: #0077aa;
}

/* LOGO NAVBAR */
.navbar {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 15px 30px;
  background-color: #f8fcff;
  border-bottom: 1px solid #ddd;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  color: #00aaff;
  font-weight: bold;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(0, 170, 255, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.logo-circle:hover {
  box-shadow: 0 0 15px rgba(0,170,255,0.7), 0 0 10px rgba(0,170,255,0.4);
  transform: scale(1.05);
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  color: #00aaff;
}

/* Navbar styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #f8fcff;
  border-bottom: 1px solid #ddd;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  color: #00aaff;
  font-weight: bold;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(0, 170, 255, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}
.logo-circle:hover {
  box-shadow: 0 0 15px rgba(0,170,255,0.7), 0 0 10px rgba(0,170,255,0.4);
  transform: scale(1.05);
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  color: #00aaff;
}

/* Hamburger */
.hamburger {
  font-size: 24px;
  color: #00aaff;
  cursor: pointer;
  user-select: none;
}

/* Wallet Info */
.wallet-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.wallet-box {
  background: #e6f7ff;
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 170, 255, 0.3);
  color: #007acc;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wallet-box:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 170, 255, 0.4);
}

.fund-btn {
  background: #00aaff;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
.fund-btn:hover {
  background: #007acc;
}
/* Upload form styling (keep as you have or I can enhance if needed) */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 15px 20px;
  box-shadow: 0 2px 8px rgba(0, 170, 255, 0.1);
  position: relative;
  z-index: 1000;
}

/* Circle logo */
.logo-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  color: #00aaff;
  font-weight: bold;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(0, 170, 255, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-brand {
  font-size: 20px;
  font-weight: bold;
  color: #00aaff;
}

.hamburger {
  font-size: 26px;
  cursor: pointer;
  color: #00aaff;
}

/* Hide nav by default */
.nav-menu {
  display: none;
  position: absolute;
  top: 65px;
  right: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 170, 255, 0.2);
  padding: 10px 0;
  list-style: none;
  min-width: 180px;
  z-index: 999;
}

.nav-menu li {
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
}

.nav-menu li:last-child {
  border-bottom: none;
}

.nav-menu li a {
  text-decoration: none;
  color: #00aaff;
  font-weight: 600;
  display: block;
}

.nav-menu li a:hover {
  background-color: #f0faff;
  color: #007acc;
  border-radius: 5px;
}

/* Show class */
.show {
  display: block;
}


.posted-tasks {
  margin-top: 40px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  border-bottom: 5px solid #00aaff;
  border-top: 5px solid #00aaff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.posted-tasks h2 {
  margin-bottom: 15px;
  color: #00aaff;
  text-align: center;
}

.posted-tasks table {
  width: 100%;
  border-collapse: collapse;
  border-bottom: 5px solid #00aaff;
  border-top: 5px solid #00aaff;
  border-radius: 10px;
}

.posted-tasks th, .posted-tasks td {
  padding: 10px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.status {
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
}

.status.pending {
  background: #ffeb3b;
  color: #333;
}

.status.completed {
  background: #4caf50;
  color: white;
}

#taskMessage {
  margin-top: 15px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  display: none;
}
#taskMessage.success {
  color: green;
  background-color: #eaffea;
  border: 1px solid #00cc66;
}
#taskMessage.error {
  color: red;
  background-color: #ffeaea;
  border: 1px solid #ff4d4d;
}





/* Advertiser Dashboard Style/


/* General Page */
body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background-color: #f1f9ff;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 15px 25px;
  box-shadow: 0 2px 8px rgba(0, 170, 255, 0.1);
  position: relative;
  z-index: 1000;
}

.logo-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  color: #00aaff;
  font-weight: bold;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(0, 170, 255, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-brand {
  font-size: 22px;
  font-weight: bold;
  color: #00aaff;
}

.hamburger {
  font-size: 26px;
  cursor: pointer;
  color: #00aaff;
}

/* Hidden menu */
.nav-menu {
  display: none;
  position: absolute;
  top: 65px;
  right: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 170, 255, 0.2);
  padding: 10px 0;
  list-style: none;
  min-width: 180px;
  z-index: 999;
}

.nav-menu li {
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
}

.nav-menu li:last-child {
  border-bottom: none;
}

.nav-menu li a {
  text-decoration: none;
  color: #00aaff;
  font-weight: 600;
  display: block;
}

.nav-menu li a:hover {
  background-color: #f0faff;
  color: #007acc;
  border-radius: 5px;
}

.show {
  display: block;
}

/* Dashboard Container */
.dashboard-container {
  max-width: 1100px;
  margin: 30px auto;
  padding: 20px;
  border-bottom: 5px solid #00aaff;
}

.dashboard-container h2 {
  text-align: center;
  color: #00aaff;
  margin-bottom: 30px;
}

/* Stat Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-5px);
}
.stat-card h3 {
  font-size: 28px;
  margin: 0;
}
.stat-card p {
  margin: 8px 0 0;
  color: #666;
  font-weight: 500;
}

.stat-card.blue { border-left: 5px solid #00aaff; }
.stat-card.green { border-left: 5px solid #00cc66; }
.stat-card.orange { border-left: 5px solid #ff9900; }
.stat-card.purple { border-left: 5px solid #9966ff; }

/* Quick Actions */
.quick-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}

.btn-action {
  background: #00aaff;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 170, 255, 0.2);
  transition: 0.3s ease;
}

.btn-action:hover {
  background: #007acc;
  transform: scale(1.03);
}

/* Task Table */
.recent-tasks {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.recent-tasks h3 {
  margin-bottom: 15px;
  color: #00aaff;
  text-align: center;
}

.recent-tasks table {
  width: 100%;
  border-collapse: collapse;
}

.recent-tasks th,
.recent-tasks td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.status {
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
}

.status.pending {
  background: #ffeb3b;
  color: #333;
}
.status.completed {
  background: #4caf50;
  color: white;
}

/* Footer */
.footer {
  margin-top: 40px;
  background: #00aaff;
  color: white;
  text-align: center;
  padding: 50px;
  border-radius: 8px;
}

//*Deposit page style*/

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f2faff;
  color: #333;
}

.navbar {
  background: #fff;
  padding: 15px 25px;
  box-shadow: 0 4px 10px rgba(0, 170, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  width: 50px;
  height: 50px;
  background: white;
  color: #00aaff;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(0,170,255,0.4);
  transition: all 0.3s ease;
}

.nav-brand {
  font-weight: bold;
  font-size: 20px;
  color: #00aaff;
}

.hamburger {
  font-size: 24px;
  cursor: pointer;
  color: #00aaff;
}

.nav-menu {
  display: none;
  position: absolute;
  right: 20px;
  top: 60px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,170,255,0.1);
  list-style: none;
  padding: 10px 0;
  z-index: 1000;
}
.nav-menu.show {
  display: block;
}
.nav-menu li {
  padding: 10px 20px;
}
.nav-menu li a {
  color: #00aaff;
  text-decoration: none;
  font-weight: 600;
}

.container {
  max-width: 700px;
  margin: 30px auto;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  border-top: 5px solid #00aaff;
  border-bottom: 5px solid #00aaff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

h2 {
  text-align: center;
  color: #00aaff;
  margin-bottom: 20px;
  font-size: 24px;
}

label {
  margin-top: 10px;
  display: block;
  font-weight: 600;
}

input, select {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

button {
  width: 100%;
  padding: 14px;
  background: #00aaff;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
button:hover {
  background: #0099dd;
}

.success {
  display: none;
  margin-top: 15px;
  padding: 10px;
  background: #e7fbe9;
  color: green;
  text-align: center;
  border-radius: 5px;
  animation: fadeIn 0.3s ease-in-out;
}

table {
  width: 100%;
  margin-top: 25px;
  border-collapse: collapse;
  border-bottom: 5px solid #00aaff;
  border-top: 5px solid #00aaff;
  border-radius: 10px;
}
th, td {
  padding: 10px;
  border-bottom: 1px solid #eee;
  text-align: left;
}
th {
  background: #00aaff;
  color: white;
}

.proof-img {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
}

/* Payment Details */
#paymentDetails {
  padding: 10px;
  background: #f0faff;
  border-left: 3px solid #00aaff;
  border-radius: 6px;
  margin-bottom: 15px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}
.animate-fade {
  animation: fadeIn 0.5s ease-in-out;
}
@keyframes slideUp {
  from { transform: translateY(15px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.animate-slide {
  animation: slideUp 0.6s ease;
}

footer {
  margin-top: 50px;
  text-align: center;
  padding: 50px;
  background: #00aaff;
  color: white;
  font-weight: 500;
}


/*Wannan style page ne na advertiser settings*/


/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f0faff;
  color: #333;
}

/* Navbar */
.navbar {
  background: white;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  position: relative;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  width: 50px;
  height: 50px;
  background: #ffffff;
  color: #00aaff;
  border-radius: 50%;
  font-weight: bold;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 170, 255, 0.3);
  transition: 0.3s ease;
}

.logo-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.5);
}

.nav-brand {
  font-size: 20px;
  font-weight: bold;
  color: #00aaff;
}

.hamburger {
  font-size: 24px;
  color: #00aaff;
  cursor: pointer;
  user-select: none;
}

.nav-menu {
  display: none;
  position: absolute;
  top: 60px;
  right: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 170, 255, 0.2);
  padding: 10px 0;
  list-style: none;
  min-width: 180px;
  z-index: 999;
}

.nav-menu li {
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
}

.nav-menu li:last-child {
  border-bottom: none;
}

.nav-menu li a {
  text-decoration: none;
  color: #00aaff;
  font-weight: 600;
  display: block;
}

.nav-menu li a:hover {
  background-color: #f0faff;
  color: #007acc;
  border-radius: 5px;
}

.show {
  display: block;
}

/* Settings Section */
.settings-container {
  max-width: 600px;
  background: white;
  margin: 50px auto;
  padding: 30px;
  border-radius: 12px;
  border-bottom: 5px solid #00aaff;
  border-top: 5px solid #00aaff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  animation: slideIn 0.6s ease;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated-title {
  text-align: center;
  color: #00aaff;
  margin-bottom: 25px;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

form label {
  font-weight: 600;
  margin-top: 16px;
  display: block;
}

form input[type="text"],
form input[type="file"],
form input[type="password"],
form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  margin-bottom: 15px;
  transition: 0.3s ease;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #00aaff;
  box-shadow: 0 0 5px rgba(0,170,255,0.3);
}

textarea {
  resize: vertical;
}

.submit-btn {
  width: 100%;
  background-color: #00aaff;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 170, 255, 0.3);
}

.submit-btn:hover {
  background-color: #0090dd;
  transform: scale(1.03);
}

/* Success message */
#settingsMessage {
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
}

/* Footer */
footer {
  background: #00aaff;
  color: white;
  text-align: center;
  padding: 50px;
  border-radius: 0;
  margin-top: 40px;
}

.password-section h3 {
  text-align: center;
  color: #00aaff;
  margin: 30px 0 15px;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  animation: fadeInUp 0.6s ease;
}

.password-section h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #00aaff;
  margin: 8px auto 0;
  border-radius: 5px;
}

.password-section h3 i {
  margin-right: 8px;
  color: #007acc;
}

/*Wannan sashin style na qdveryiser-posted-tasks*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f1f9ff;
  color: #333;
  padding-bottom: 80px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 15px 20px;
  box-shadow: 0 2px 8px rgba(0, 170, 255, 0.1);
  position: relative;
  z-index: 1000;
}

.logo-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  color: #00aaff;
  font-weight: bold;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(0, 170, 255, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-brand {
  font-size: 22px;
  font-weight: bold;
  color: #00aaff;
}

.hamburger {
  font-size: 24px;
  color: #00aaff;
  cursor: pointer;
  user-select: none;
}

.nav-menu {
  display: none;
  position: absolute;
  top: 65px;
  right: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 170, 255, 0.2);
  padding: 10px 0;
  list-style: none;
  min-width: 180px;
  z-index: 999;
}

.nav-menu li {
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
}
.nav-menu li:last-child {
  border-bottom: none;
}
.nav-menu li a {
  text-decoration: none;
  color: #00aaff;
  font-weight: 600;
  display: block;
}
.nav-menu li a:hover {
  background-color: #f0faff;
  color: #007acc;
  border-radius: 5px;
}
.nav-menu.show {
  display: block;
}

/* Main content */
.container {
  max-width: 1000px;
  margin: 50px auto;
  background: white;
  padding: 25px;
  border-radius: 12px;
  border-bottom: 5px solid #00aaff;
  border-top: 5px solid #00aaff;
  box-shadow: 0 4px 12px rgba(0, 170, 255, 0.08);
  animation: fadeIn 0.5s ease-in-out;
}

.animated-title {
  color: #00aaff;
  text-align: center;
  margin-bottom: 30px;
  animation: fadeInDown 0.6s ease-in-out;
}

.tasks-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  border-bottom: 5px solid #00aaff;
  border-top: 5px solid #00aaff;
  border-radius: 10px;
}

.tasks-table th, .tasks-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.tasks-table th {
  background: #00aaff;
  color: white;
  font-weight: bold;
}

.tasks-table tr:hover {
  background: #f9f9f9;
}

.status {
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: bold;
  display: inline-block;
}

.status.pending {
  background: #fff3cd;
  color: #856404;
}
.status.completed {
  background: #d4edda;
  color: #155724;
}

.btn {
  padding: 6px 10px;
  border: none;
  margin-right: 5px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.view-btn {
  background: #00c8ff;
  color: white;
}
.view-btn:hover {
  background: #009ccc;
  transform: scale(1.05);
}

.edit-btn {
  background: #ffc107;
  color: black;
}
.edit-btn:hover {
  background: #e0a800;
  transform: scale(1.05);
}

.delete-btn {
  background: #ff4d4f;
  color: white;
}
.delete-btn:hover {
  background: #d9363e;
  transform: scale(1.05);
}

/* Footer */
footer {
  background: #00aaff;
  color: white;
  text-align: center;
  padding: 50px;
  position: fixed;
  bottom: 0;
  width: 100%;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.4s ease-in-out;
}

/*Wannan page na advertiser-wallet*/

/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f2faff;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 15px 25px;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-circle {
  width: 50px;
  height: 50px;
  background: #fff;
  color: #00aaff;
  font-weight: bold;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 8px rgba(0,170,255,0.3);
  transition: 0.3s ease;
}
.logo-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(0,170,255,0.6);
}

.nav-brand {
  font-size: 22px;
  font-weight: 700;
  color: #00aaff;
}

.hamburger {
  font-size: 26px;
  color: #00aaff;
  cursor: pointer;
  user-select: none;
}

/* Navigation Menu */
.nav-menu {
  display: none;
  position: absolute;
  top: 65px;
  right: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 170, 255, 0.2);
  padding: 10px 0;
  list-style: none;
  min-width: 180px;
  z-index: 999;
}
.nav-menu.show {
  display: block;
}
.nav-menu li {
  padding: 10px 20px;
}
.nav-menu li a {
  text-decoration: none;
  color: #00aaff;
  font-weight: 600;
  display: block;
}
.nav-menu li a:hover {
  background-color: #f0faff;
  color: #007acc;
  border-radius: 6px;
}
.nav-menu li a.active {
  color: #007acc;
  font-weight: 700;
}

/* Wallet Section */
.wallet-section {
  max-width: 700px;
  margin: 40px auto;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  animation: fadeInUp 0.5s ease;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  } to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wallet-section h2 {
  text-align: center;
  color: #00aaff;
  margin-bottom: 20px;
}

/* Balance Box */
.wallet-balance-box {
  background: #e0f7ff;
  border-left: 6px solid #00aaff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  animation: pulse 1.5s infinite;
}
.wallet-balance-box h3 {
  margin-bottom: 8px;
  color: #0077cc;
}
.wallet-amount {
  font-size: 28px;
  font-weight: bold;
  color: #007acc;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.01); }
  100% { transform: scale(1); }
}

/* Fund Button */
.fund-wallet-btn {
  display: block;
  margin: 0 auto 30px;
  padding: 12px 20px;
  background: #00aaff;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,170,255,0.3);
}
.fund-wallet-btn:hover {
  background: #0077cc;
  transform: scale(1.03);
}

/* Withdraw Form */
.withdraw-form {
  margin-bottom: 40px;
}
.withdraw-form h3 {
  color: #00aaff;
  text-align: center;
  margin-bottom: 15px;
}

label {
  display: block;
  margin: 10px 0 5px;
  font-weight: 600;
}

input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.withdraw-form button {
  width: 100%;
  background: #00aaff;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.withdraw-form button:hover {
  background: #0077cc;
  transform: scale(1.02);
}

/* Withdraw Message */
#withdrawMessage {
  text-align: center;
  margin-top: 10px;
  font-weight: 600;
}

/* History */
.history-heading {
  color: #00aaff;
  text-align: center;
  margin-bottom: 15px;
}

.wallet-history {
  width: 100%;
  border-collapse: collapse;
  border-bottom: 5px solid #00aaff;
  border-top: 5px solid #00aaff;
  border-radius: 10px;
}
.wallet-history th,
.wallet-history td {
  padding: 10px;
  border-bottom: 1px solid #eee;
  text-align: left;
  font-size: 14px;
}
.wallet-history th {
  background: #00aaff;
  color: white;
}

/* Footer */
footer {
  text-align: center;
  background: #00aaff;
  color: white;
  padding: 50px;
  margin-top: 60px;
  border-radius: 0 0 12px 12px;
}


/*Wannan style ne na advertiser-support*/


/* Basic Reset 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f1f9ff;
  color: #333;
}

/* Hamburger *
.hamburger {
  font-size: 26px;
  background: #00aaff;
  color: white;
  padding: 12px 18px;
  cursor: pointer;
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1001;
  border-radius: 6px;
}

.sidebar {
  position: fixed;
  left: -240px;
  top: 0;
  width: 230px;
  height: 100%;
  background: #00aaff;
  color: white;
  padding-top: 80px;
  transition: 0.3s ease;
  z-index: 1000;
}

.sidebar.active {
  left: 0;
}

.sidebar-header {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-circle {
  width: 50px;
  height: 50px;
  background: white;
  color: #00aaff;
  border-radius: 50%;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0,170,255,0.3);
}

.brand-text {
  font-size: 18px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  padding-left: 0;
}

.nav-links li {
  padding: 12px 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  display: block;
  transition: background 0.3s;
}

.nav-links li a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}
/* Main Content *
.main-content {
  margin: 80px auto;
  padding: 20px;
  max-width: 700px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  animation: fadeIn 0.8s ease-in-out;
}

/* Headings *
h2, h3 {
  color: #00aaff;
  text-align: center;
  margin-bottom: 20px;
}

/* Form *
form label {
  display: block;
  margin: 10px 0 5px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button {
  background: #00aaff;
  color: white;
  border: none;
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  background: #0077cc;
}

/* FAQ *
.faq-list li {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Message Box *
.success-msg {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  font-weight: 500;
}

/* Footer *
footer {
  margin-top: 50px;
  background: #00aaff;
  color: white;
  text-align: center;
  padding: 15px;
  border-radius: 0 0 10px 10px;
}

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

.fade-in {
  animation: fadeIn 0.8s ease-in-out;
}

.slide-in {
  animation: slideIn 0.6s ease-in-out;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}



.faq-list {
  margin-top: 20px;
  list-style: none;
  padding-left: 0;
}

.faq-list li {
  margin-bottom: 15px;
  padding: 10px;
  background: #f9fcff;
  border-left: 4px solid #00aaff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 170, 255, 0.05);
}





/* GENERAL STYLES */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4faff;
  color: #333;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  box-shadow: 0 2px 8px rgba(0, 170, 255, 0.15);
  z-index: 1000;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  color: #00aaff;
  font-weight: bold;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(0, 170, 255, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.6);
}

.brand-name {
  font-size: 24px;
  font-weight: 700;
  color: #00aaff;
}

/* HAMBURGER */
.hamburger {
  font-size: 26px;
  cursor: pointer;
  color: #00aaff;
  transition: transform 0.3s ease;
}

.hamburger:hover {
  transform: scale(1.1);
}

/* SIDEBAR */
.sidebar {
  position: fixed;
  left: -240px;
  top: 0;
  width: 220px;
  height: 100%;
  background: #00aaff;
  color: white;
  padding-top: 70px;
  transition: 0.3s ease-in-out;
  z-index: 999;
}

.sidebar.active {
  left: 0;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  padding: 12px 20px;
}

.sidebar ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.sidebar ul li:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* MAIN CONTENT */
.main-content {
  max-width: 800px;
  margin: 80px auto 50px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 170, 255, 0.1);
  animation: fadeSlide 0.5s ease-in-out;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-content h2 {
  color: #00aaff;
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
}

/* SUPPORT TEXT */
.support-info {
  text-align: center;
  font-size: 16px;
  margin-bottom: 25px;
  color: #444;
}

/* FAQ LIST */
.faq-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.faq-list li {
  background: #f0faff;
  border-left: 4px solid #00aaff;
  padding: 12px 15px;
  margin-bottom: 12px;
  border-radius: 6px;
  font-size: 15px;
}

/* CONTACT BUTTON */
.contact-support {
  text-align: center;
}

.contact-btn {
  background: #00aaff;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(0, 170, 255, 0.3);
  display: inline-block;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background-color: #008ecc;
  transform: scale(1.05);
}

/* FOOTER */
footer {
  background: #00aaff;
  color: white;
  text-align: center;
  padding: 50px;
  font-size: 14px;
  position: relative;
  margin-top: 50px;
}


/*Stats Page style*/

.stats-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.stats-cards .card {
  background: #f0faff;
  padding: 20px;
  border-left: 4px solid #00aaff;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 8px rgba(0,170,255,0.1);
}

.stats-cards .card span {
  display: block;
  font-size: 22px;
  font-weight: bold;
  margin-top: 8px;
  color: #00aaff;
}

.task-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  border-bottom: 5px solid #00aaff;
  border-top: 5px solid #00aaff;
  border-radius: 10px;
}

.task-table th,
.task-table td {
  padding: 12px 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  text-align: center;
}

.task-table th {
  background-color: #00aaff;
  color: white;
}

.task-table tr:nth-child(even) {
  background-color: #f9f9f9;
}