body {
  background-color: black;
  font-family: "Times New Roman", Times, serif;
  border: 2px groove white;
  margin: 2px;
  padding-right: 2px;
  padding-left: 2px;
  font-weight: bold;
}

a {
  color: mintcream;
  text-decoration: none;
}

.alert-warning {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
  padding: 15px 20px;
  margin: 15px auto;
  max-width: 500px;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.blue1 {
  color: black;
  border: 2px solid purple;
  background-color: mintcream;
  font-weight: bold;
  font-size: medium;
  padding: 1px;
  margin: 1px;
  border-radius: 4px;
  text-align: left;
}

.quote {
  font-weight: bold;
  border: 2px solid purple;
  color: blue;
  text-shadow: 1px 1px 2px red;
  background-color: mintcream;
  border-radius: 2px;
}

.homepage-button {
  text-align: center;
  margin-top: 20px;
}

.homepage-button a {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #111111;
  border-radius: 10px;
  background: #222666;
  box-shadow: inset 0 0 5px #444;
  color: #0099FF;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
}

.heading-box {
  background-color: #ff95e4;
  color: black;
  font-weight: bold;
  font-size: large;
  border: 5px outset red;
  margin: 10px;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}

.heading-box h1 a {
  color: white;
  text-decoration: none;
}

.center {
  text-align: center;
}

.marquee-wrapper {
  background-color: #112233;
  border: 1px inset red;
  padding: 5px;
  border-radius: 13px;
  max-width: 90%;
  margin: auto;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  padding: 20px;
  margin: 0;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

.link-card {
  background: linear-gradient(135deg, #2b5876, #4e4376);
  color: #fff;
  text-decoration: none;
  padding: 30px 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}

.link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, #4e4376, #2b5876);
}

.link-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 80%);
  animation: glowRotate 6s linear infinite;
  z-index: 0;
}

.link-card span {
  position: relative;
  z-index: 1;
}

@keyframes glowRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.base {
  max-width: 500px;
  margin: 10px auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  font-family: 'Segoe UI', sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.base a {
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  min-width: 50px;
  text-align: center;
}

.base a.delete {
  background: linear-gradient(135deg, #e53935, #b71c1c);
}

.base a.edit {
  background: linear-gradient(135deg, #039be5, #01579b);
}

.base a.delete-all {
  background: linear-gradient(135deg, #fbc02d, #f57f17);
  color: black;
}

.base a:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.multi-light-card {
  background-color: #111;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  position: relative;
}

.multi-light-card::before,
.multi-light-card::after,
.multi-light-card .light-left,
.multi-light-card .light-right {
  content: '';
  position: absolute;
  z-index: 2;
}

.multi-light-card::before {
  height: 2px;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, transparent, #ff00cc, transparent);
  animation: slide-h 3s linear infinite;
}

.multi-light-card::after {
  height: 2px;
  width: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(to left, transparent, #00ffff, transparent);
  animation: slide-h 3s linear infinite reverse;
}

.multi-light-card .light-left {
  width: 2px;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, transparent, #ffcc00, transparent);
  animation: slide-v 3s linear infinite;
}

.multi-light-card .light-right {
  width: 2px;
  height: 100%;
  top: 0;
  right: 0;
  background: linear-gradient(to top, transparent, #00ff99, transparent);
  animation: slide-v 3s linear infinite reverse;
}

.multi-title a {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ff00cc;
  text-decoration: none;
  padding: 10px 30px;
  background: rgba(255, 0, 204, 0.1);
  border-radius: 10px;
  border: 2px solid #ff00cc;
  transition: 0.3s ease;
  display: inline-block;
}

.multi-title a:hover {
  background: #ff00cc;
  color: #000;
}

.multi-tags {
  margin-top: 20px;
  font-size: 1.1rem;
  color: #ddd;
  line-height: 1.7;
}

@keyframes slide-h {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}

@keyframes slide-v {
  0% {
    background-position: 0 -100%;
  }
  100% {
    background-position: 0 100%;
  }
}

.time-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: transform 0.3s ease;
}

.time-card:hover {
  transform: translateY(-5px);
}

#date {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin-bottom: 10px;
}

#time {
  font-size: 20px;
  font-weight: 600;
  color: #222;
}

.container {
  margin: 30px auto;
  background: #fff8c4;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
}

.container h1 {
  font-size: 22px;
  color: #1e40af;
  margin-bottom: 10px;
  font-weight: bold;
}

.section {
  margin: 15px 0;
  padding: 10px;
  background-color: #fffbeb;
  border-radius: 8px;
  border: 1px solid #ffe58f;
  text-align: center;
}

.highlight {
  font-weight: bold;
  color: #d97706;
}

.button {
  display: inline-block;
  padding: 10px 25px;
  margin-top: 10px;
  font-size: 16px;
  color: #fff;
  background-color: #dc2626;
  border: 2px solid #991b1b;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

.green-button {
  background-color: #059669;
  border-color: #065f46;
}

.divider {
  margin: 10px 0;
  border-top: 1px dashed #ccc;
}

.contact {
  font-weight: bold;
  font-size: 16px;
  margin: 5px 0;
  color: #007700;
}

.card {
  margin: 25px auto;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
}

.green-card {
  background-color: #3DED97;
  color: #111827;
}

.cream-card {
  background-color: #FFFFF0;
  color: #111827;
}

.card.green-card {
  background-color: #e6ffed;
  border: 2px solid #3DED97;
  border-radius: 16px;
  padding: 25px;
  margin: 20px auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', sans-serif;
  color: #222;
}

.card h2 {
  color: #008000;
  font-size: 22px;
  text-align: center;
}

.card h3 {
  font-size: 18px;
  text-align: center;
  color: #333;
}

.emoji-title {
  font-size: 18px;
  color: #0077cc;
  text-align: center;
  margin: 10px 0;
}

.big-text {
  font-size: 18px;
}

.badge {
  background-color: #ffe600;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 12px;
  margin: 5px 0;
  font-weight: bold;
  color: #000;
}

.time-table {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 300px;
}

.time-table li {
  padding: 5px 0;
  font-size: 16px;
}

.button.call-btn {
  background-color: #ff3b3b;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.button.call-btn:hover {
  background-color: #cc0000;
}

.note {
  margin-top: 10px;
  font-style: italic;
  font-size: 14px;
  color: #555;
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: #25D366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
  }

  .whatsapp-float img {
    display: block;
  }