  body {
      background-color: #022424;
      color: #00ffcc;
      font-family: "Courier New", Courier, monospace;
      margin: 0;
      padding: 0;
      display: flex;
      height: 100vh;
  }

  .sidebar {
      width: 230px;
      background-color: #022424;
      color: #00ffcc;
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 2px 0 5px rgba(255, 255, 255, 0.3);
  }

  .sidebar .logo {
      background-color: #004747;
      margin-bottom: 20px;
      border-radius: 10px;
  }

  .sidebar .logo img {
      width: 170px;
      padding: 10px;
      filter: invert(1);
  }

  .sidebar nav {
      margin-top: 20px;
  }

  .sidebar nav a {
      display: flex;
      align-items: center;
      padding: 10px;
      color: #00ffcc;
      text-decoration: none;
      border-radius: 5px;
      font-size: 1rem;
  }

  .sidebar nav a:hover {
      background-color: #004747;
  }

  .sidebar nav a svg {
      margin-right: 10px;
      width: 20px;
      height: 20px;
      fill: #00ffcc;
  }

  .content {
      flex-grow: 1;
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
  }

  .header {
      padding: 10px;
      color: #00ffcc;
      background-color: #004747;
      border-radius: 8px;
      text-align: left;
      font-size: 1.2rem;
      box-shadow: 0px 1px 3px white;
  }

  .chat-box {
      flex-grow: 1;
      margin-top: 20px;
  }

  .message {
      box-shadow: 0px 2px 0px -1px #ffffff52;
      background-color: #252512;
      padding: 15px;
      border-radius: 10px;
      color: #00ffcc;
      margin-bottom: 15px;
      display: inline-block;
      max-width: 75%;
      font-size: 1rem;
  }

  .donation-card {
      background-color: #004747;
      color: #00ffcc;
      padding: 14px;
      border-radius: 10px;
      box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  }

  .donation-card h5 {
      font-weight: 600 !important;
      color: rgb(180, 139, 4);
  }

  .donation-card input {
      background-color: #002b2b;
      border: 1px solid #00ffcc;
      color: #00ffcc;
  }

  .green_text {
      color: #0f9191 !important;
  }

  .input-ui textarea {
      background-color: #002b2b;
      border-radius: 10px;
      text-transform: capitalize;
      padding: 8px 11px;
      color: #006666;
      font-weight: 600;
  }

  .donation-card input:focus {
      box-shadow: 0 0 5px #00ffcc;
      outline: none;
  }

  .btn-custom {
      background-color: #006666;
      color: #00ffcc;
      border: 1px solid #00ffcc;
  }

  .btn-custom:hover {
      background-color: #00ffcc;
      color: #003535;
  }

  .error-text {
      color: #ff5050;
      margin-top: 10px;
  }

  .footer {
      padding: 10px;
      color: #00ffcc;
      border-radius: 8px;
  }

  .skull_icon {
      filter: invert(1);
      width: 20px;
  }


  .two_buttons button {
      background-color: #003535;
      color: white;
      border: 1px solid white;
  }

  .toggle-icon,
  .history-icon,
  .setting-icon{
    border: 1px solid white;
        padding: 4px 6px;
        border-radius: 50%;
  }

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.unlock-btn {
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    background-color: #066363;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Button hover effect */
.unlock-btn:hover {
    background-color: #003535;
}

  @media (max-width: 768px) {
     .sidebar{
        display: none;
     }
  }