.footer {
    background-color: lime;
}
body {
    background-color:green;
    font-family: 'Times New Roman', Times, serif;
}
.mD {
    background-color: rgb(123, 70, 0);
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #22ff00;
    color: black;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}
.btn:hover {
    background: #179004;
}
.buttonBlack {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    color: black;
    border-radius: 6px;
    font-weight: bold;
}
.buttonBlack:hover {
    background:#888888;
}





.banner {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  z-index: 1000;
}

.banner-content {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.close-btn,
.action-btn {
  padding: 8px 16px;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.close-btn {
  background-color: #f44336;
  color: white;
  width: 32px;
  height: 32px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-btn {
  background-color: #4CAF50;
  color: white;
}

.close-btn:hover,
.action-btn:hover {
  opacity: 0.9;
}   