body.light-mode {
    background-color: #f2f2f2;
    color: #222;
}

body.dark-mode .mainContainer h1,
body.dark-mode .mainContainer h2 {
    color: #222;
}
body.light-mode .container {
    background-color: #ffffff;
    color: #222;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

body.light-mode input {
    background-color: #f9f9f9;
    color: #000;
    border-color: #ccc;
}

body.light-mode input:focus {
    border-color: #007BFF;
}

body.light-mode button {
    background-color: #007BFF;
}

body.light-mode button:hover {
    background-color: #0056b3;
}

body.light-mode li {
    background-color: #eeeeee;
    color: #000;
}

body.light-mode .message-box {
    color: green;
}

.theme-toggle {
    margin-top: 20px;
}

#themeBtn {
    background-color: #444;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

#themeBtn:hover {
    background-color: #666;
}

body.light-mode #themeBtn {
    background-color: #ddd;
    color: #222;
}

body.light-mode #themeBtn:hover {
    background-color: #bbb;
}


@font-face {
    font-family: neu;
    src: url(./NeueHaasDisplayMediu.ttf);
}

@font-face {
    font-family: neu;
    font-weight: 100;
    src: url(./NeueHaasDisplayLight.ttf);
}

@font-face {
    font-family: neu;
    font-weight: 200;
    src: url(./NeueHaasDisplayRoman.ttf);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


 
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #121212; 
   font-family: neu, sans-serif;
}


.mainContainer {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: pink; 
}

.container {
  background-color: #1f1f1f;
  color: white;
  padding: 30px;
  border-radius: 12px;
  width: 60%;
  max-width: 500px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  text-align: center;
  justify-content: center;
}


.input-section {
  margin: 20px 0;
  display: flex;
  gap: 10px;
  justify-content: center;
  border-radius: #000;
}

.input-section input {
  padding: 10px;
  width: 60%;
  border-radius: 5px;
  border: none;
}

.input-section button {
  padding: 10px 20px;
  border: none;
  background-color: #007bff;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

li {
  margin: 10px 0;
  background-color: #2c2c2c;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
}

.message-box {
  margin-top: 20px;
  color: #00ff88;
}

.Delete {
  background-color: #ff4d4d;
  color: white;
  border: none;
  padding: 6px 12px;
  margin-left: 10px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.Delete:hover {
  background-color: #cc0000;
}

.theme-toggle {
  margin-top: 20px;
}
.theme-toggle button {
  background-color: #292929;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

