@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");

/* Base Styling */
html,
body {
  height: 100%;
  margin: 0;
  font-family: "Roboto", sans-serif;
  background: #4a13e2 !important;
  color: white !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
body {
  padding-bottom: 40px;
}

/* Wrapper Container */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 900px;
  padding: 1rem;
  box-sizing: border-box;
}

/* Wrapper Styling */
#wrapper {
  width: 100%;
  max-width: 800px;
  padding: 0.5rem 1.5rem;
  background: radial-gradient(circle, #5a58d3, #0d0ac4);
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25), 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  animation: fadeIn 0.8s ease-in-out;
}

#wrapper {
  max-width: 650px;
  padding: 0.5em 1.5em;
}

/* Typography */
h2 {
  font-size: 0.5rem;
  font-weight: 200;
  color: white;
  margin-bottom: 1rem;
}

/* Buttons */
button {
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
  color: #ffffff;
}

button:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

#btn-start {
  background: #fdbf07;
}

#btn-stop {
  background: #f44336;
  display: none;
}

#btn-start hr,
#btn-stop hr {
  margin: 0.5em;
}

button i {
  margin-right: 0.5rem;
}

/* Modal Styling */
#modal-help {
  backdrop-filter: blur(10px);
}

.modal-content {
  background: #fafafa;
  color: #333;
  border-radius: 10px;
  border: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.modal-header,
.modal-footer {
  border: none;
}

/* Footer */
footer a {
  color: #ffffff;
  text-decoration: underline;
}

footer a:hover {
  color: #ffffff;
  transform: scale(1.5);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Material UI Card */
.card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  margin: 1rem 0;
}

.card h3 {
  color: #333;
  margin-bottom: 0.5rem;
}
#wrapper h1,
#wrapper h2,
footer p.pt-3,
footer label,
footer small {
  opacity: 0.8;
}

#div-bing {
  display: none !important;
  width: 0px !important;
  height: 0px !important;
}
