/* Main Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

/* Fullscreen Popup Styles */


#fullscreenPopup .popup-content {
  text-align: center;
  max-width: 80%;
}

#fullscreenPopup h2 {
  font-size: 2rem;
}

#closePopup {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 3rem;
  cursor: pointer;
}

#closePopup:hover {
  color: #cccccc;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f3f6fb;
  color: #000000;
  min-height: 100vh;
}

header, footer {
  background-color: #ffffff;
  padding: 1rem;
  width: 100%;
  position: relative !important;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.5;
}

.ads {
  margin-bottom: 1rem;
}

a {
  color: #000000;
  text-decoration: none;
}

a.link-black {
  color: #000000;
}

.nav-link {
  color: #000000 !important;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

textarea {
  resize: none;
  width: 100%;
  height: 200px;
  font-size: 1.4rem;
  line-height: 1.2;
  padding: 0.5rem;
  border-radius: 15px;
  border: 0;
}

#charCounter {
  font-size: 1.2rem;
  text-align: left !important;
}

.legal {
  display: flex;
  gap: 1rem;
  text-align: left !important;
  font-size: 1.2rem;
}

.btn-custom {
  background-color: #000000 !important;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif;
  padding: 0.2rem 0.2rem;
  border: 1px solid #000000;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2rem;
  width: 150px !important;
  height: 50px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}


.btn-custom:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}

.btn-outline-custom {
  background-color: #000000;
  color: #ffffff;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  padding: 0.5rem 1rem;
  font-size: 1rem;
}

.btn-outline-custom:hover {
  background-color: #ffffff;
  color: #000000;
}

input[type='submit']:disabled, input[type='button']:disabled {
  background-color: #646464;
  cursor: not-allowed;
}

footer {
  margin-top: 1rem;
  font-size: 1rem;
  position: relative !important;
}

#result {
  font-size: 1.2rem;
  line-height: 1.4;
  max-width: 80%;
  margin: 1rem auto;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 15px;
  color: #000000;
  border: 0;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.checkbox-container input[type="checkbox"] {
  margin: 0;
}

.checkbox-container label {
  margin: 0;
}

.card {
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  background-color: #f3f6fb;
  padding: 1rem;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.output {
  background-color: #f3f6fb;
  padding: 15px;
  border-radius: 10px;
}

.arrow-icon {
  font-size: 2rem;
  color: #deff36;
}

.row.flex-nowrap {
  gap: 1rem;
}

