* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  background-color: #191919;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Sidebar */
.sidebar {
  width: 100%;
  max-width: 400px;
  background-color: #3c3c3c;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -400px;
  padding: 20px;
  box-sizing: border-box;
  transition: right 0.3s ease;
  z-index: 1000;
}

.sidebar.open {
  right: 0;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 20px;
  color: white;
  cursor: pointer;
}

.sidebar-user {
  position: absolute;
  top: 75px;
  left: 40px;
  width: 50px;
  color: white;
  display: flex;
  align-items: center;
  gap: 20px;
}

.sidebar-user span {
  font-size: 30px;
  max-width: 200px;
}

.side-bar-links {
  background-color: #3c3c3c;
  height: 67vh;
  width: 100vw;
  border: 1px solid #515151;
  border-top-left-radius: 40px;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: white;
}

.side-bar-links div button, .side-bar-links div a {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}

.side-bar-links div button {
  background: none;
  border: none;
  color: white;
}

.side-bar-links div img {
  width: 25px;
}

.sidebar-footer {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: lightgrey;
  font-size: 12px;
  text-align: center;
  line-height: 1.6;
}

.sidebar-footer-company {
  font-weight: bold;
  margin-bottom: 5px;
}

.sidebar-footer-copy {
  display: block;
  margin-bottom: 5px;
}

.sidebar-footer-links a {
  color: lightgrey;
  text-decoration: none;
  margin: 0 5px;
  cursor: pointer;
  font-size: 12px;
}

.sidebar-footer-links a:hover {
  text-decoration: underline;
}

/* Header */
.content-wrapper {
  width: 100%;
}

.header {
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 500px;
  margin: 0 auto;
}
.header.notLoggedIn {
    justify-content: center;
}

.header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header img {
  height: 30px;
  width: auto;
}

.header .user {
  font-size: 30px;
  cursor: pointer;
}

/* Main Content */
.main-content {
  max-width: 500px;
  margin: 0 auto;
}

.object-name,
.welcome {
  color: white;
}

.object-name {
  font-size: 15px;
  margin: 20px 0 10px 20px;
}

.welcome {
  font-size: 35px;
  margin: 0 0 20px 20px;
  width: 100%;
  max-width: 280px;
}

/* Quicklinks */
.quicklinks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px 0;
}

.quicklink-btn {
  background: #474747;
  color: white;
  height: 100px;
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  gap: 5px;
}

.quicklink-btn-icon {
  width: 30px;
}

.quicklink-btn-text {
  font-size: 15px;
}

/* News */
.section-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 5px;
  text-align: center;
  color: white;
}

.news-container {
  background-color: #e1ff00;
  color: black;
  padding: 50px 20px;
  border-radius: 50px;
  margin: 40px 0;
}

.news-container .section-title {
  color: black;
}

.news-item-timestamp {
  font-size: 10px;
  text-align: right;
  transform: translateX(-20px);
  color: #6b7280;
}

.news-item-message {
  background-color: white;
  color: black;
  border-radius: 20px;
  padding: 10px 15px;
  position: relative;
  font-size: 14px;
  margin: 5px 0 20px;
  line-height: 1.4;
}

.news-item-message::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 8.5%;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top-color: white;
  border-bottom: 0;
  border-left: 0;
  margin-left: -5px;
  margin-bottom: -10px;
}

.news-conatiner-btn {
  margin: 40px auto 0;
  background-color: black;
  color: white;
  width: 50%;
  padding: 12px 20px;
  text-align: center;
  border-radius: 15px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}

/* Damage Page */
.damage-header {
  margin: 20px;
}

.damage-header-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  margin-bottom: 20px;
}

.damage-header-top img {
  width: 24px;
  cursor: pointer;
  color: white;
}

.damage-header-top h1 {
  font-size: 24px;
  margin: 0 auto;
}

.damage-header-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}

.damage-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: normal;
  overflow-wrap: break-word;
  padding: 10px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease;
  width: 100%;
  min-height: 60px;
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.damage-btn.active {
  background-color: #e1ff00;
  color: black;
  border: none;
}

.damage-btn:hover {
  opacity: 0.85;
}

.damage-container {
  background-color: #191919;
  padding: 30px 20px;
  border-radius: 30px;
  margin-bottom: 40px;
}

.status-item {
  background-color: #3c3c3c;
  color: white;
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 15px;
  font-size: 13px;
  line-height: 1.5;
  box-sizing: border-box;
}

.status-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
}

.status-ball {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-ball.in-progress {
  background-color: orange;
}

.status-ball.done {
  background-color: limegreen;
}

.status-text {
  flex: 1;
}

.status-text .status {
  font-weight: bold;
  margin-bottom: 3px;
}

.status-text .timestamp {
  font-size: 11px;
  color: #cfcfcf;
  margin-bottom: 5px;
}

.status-text .status-label {
  color: #cfcfcf;
}

.status-view-more {
  width: 20px;
  color: #fff;
  cursor: pointer;
}

.damage-conatiner-btn {
  margin: 40px auto 0;
  background-color: white;
  color: black;
  width: 50%;
  padding: 12px 20px;
  text-align: center;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}

/* Damage Footer Progress */
.damage-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
}

.damage-footer button#prevBtn {
  background-color: transparent;
  border: 1px solid white;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
  color: white;
}
.damage-footer button#nextBtn {
  background-color: #e1ff00;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
  color: black;
}

.damage-footer button#prevBtn:disabled {
  background-color: #ccc;
  border: none;
  color: #666;
  cursor: not-allowed;
}

.progress-container {
  width: 60px;
  height: 60px;
  position: relative;
}

.progress-circle {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.circle-bg {
  fill: none;
  stroke: #ccc;
  stroke-width: 3.8;
}

.circle-progress {
  fill: none;
  stroke: #e1ff00;
  stroke-width: 3.8;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.4s ease;
}

.circle-text {
  fill: white;
  font-size: 10px;
  text-anchor: middle;
  dominant-baseline: middle;
  rotate: 90deg;
  transform: translateY(-37px);
}

/* === ADDITIONAL CSS for Step 1 Form === */

.damage-form-card {
  background-color: #111;
  border-radius: 30px;
  padding: 30px 20px;
  margin: 30px 0;
  color: white;
}

.form-section {
  margin-bottom: 25px;
}

.form-label {
  font-weight: bold;
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

.form-description {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 10px;
  line-height: 1.4;
}

.form-input {
  width: 100%;
  padding: 10px 15px;
  border-radius: 10px;
  border: none;
  background-color: #3a3a3a;
  color: white;
  font-size: 14px;
  box-sizing: border-box;
}

.file-input {
  margin-top: 10px;
  padding: 10px 15px;
  background-color: #000;
  color: white;
  border-radius: 10px;
  border: 1px solid white;
  font-weight: bold;
  cursor: pointer;
}

.form-steps h2 {
  color: white;
}

/* === Additional Step 2 Styles === */
.form-input[type="text"],
.form-input,
select.form-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #3a3a3a;
  color: white;
  padding: 12px 16px;
  border: none;
  border-radius: 12px;
  width: 100%;
  font-size: 14px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 6.646a.5.5 0 0 1 .708 0L8 9.293l2.646-2.647a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  cursor: pointer;
}

select.form-input:invalid {
  color: #888;
}

.custom-file-upload {
  display: inline-block;
  padding: 10px 20px;
  background-color: transparent;
  color: white;
  border: 1px solid white;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  margin-right: 10px;
}

.hidden-file-input {
  display: none;
}

.file-name {
  color: #aaa;
  font-size: 14px;
  display: inline-block;
  max-width: calc(100% - 200px); /* accounts for button width + margin */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 10px;
}

.form-input[type="textarea"],
textarea.form-input {
  resize: none; /* verhindert Größenänderung */
  height: 150px;
  margin-top: 10px;
}

.review-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.review-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-field strong {
  font-size: 13px;
  color: white;
}

.review-value {
  background-color: #3a3a3a;
  padding: 12px 15px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 14px;
}

.review-value img {
  width: 16px;
  height: 16px;
  cursor: pointer;
  opacity: 0.8;
}

.review-value img:hover {
  opacity: 1;
}

/* === Aktive Chats === */

.chat-list-wrapper {
  background-color: #191919;
  padding: 20px;
  border-radius: 20px;
  max-width: 500px;
  margin: 0 auto;
  color: white;
}

.chat-item {
  background-color: #2e2e2e;
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.chat-item:hover {
  background-color: #383838;
}

.chat-item-name {
  font-size: 16px;
  font-weight: bold;
}

.chat-item-role {
  font-size: 13px;
  color: #aaa;
}

.chat-item-preview {
  font-size: 13px;
  color: #ccc;
  margin-top: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-item-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.chat-item-img {
  height: 20px;
}

.chat-options-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #2e2e2e;
  padding: 30px 20px 50px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  color: white;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: slideUp 0.3s ease forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}

.chat-options-popup.hidden {
  display: none;
}

.chat-option {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  cursor: pointer;
}

.chat-option img {
  width: 20px;
  height: 20px;
}

.chat-option.delete {
  color: red;
}

.close-popup {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 22px;
  color: white;
  cursor: pointer;
}

.chat-wrapper {
  padding: 20px;
  color: white;
  max-width: 500px;
  margin: 0 auto;
}

.chat-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.chat-tabs .tab {
  flex: 1;
  padding: 12px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid white;
  background-color: transparent;
  color: white;
}

.chat-tabs .tab.active {
  background-color: #e1ff00;
  color: black;
  border: none;
}

.chat-selection-box {
  background-color: #2e2e2e;
  padding: 20px;
  border-radius: 20px;
}

.chat-label {
  font-size: 13px;
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
}

.chat-input {
  width: calc(100% - 40px);
  margin: 10px 20px 0; /* top: 10px, horizontal: 20px, bottom: 0 */
  padding: 10px 15px;
  border-radius: 10px;
  border: none;
  background-color: #444;
  color: white;
  font-size: 14px;
  box-sizing: border-box;
}

.chat-recipients-header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 10px;
}

.select-toggle {
  font-weight: normal;
  color: #aaa;
  cursor: pointer;
}

.minus-icon {
  font-size: 18px;
  margin-left: 5px;
  color: #aaa;
}

.chat-user-option {
  background-color: #3c3c3c;
  padding: 15px 20px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.chat-user-option.selected {
  background-color: #515151;
}

.chat-user-name {
  font-size: 15px;
  font-weight: bold;
}

.chat-user-role {
  font-size: 12px;
  color: #ccc;
}

.chat-user-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #888;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-user-checkbox.checked {
  background-color: #e1ff00;
  border: none;
  position: relative;
}

.chat-user-checkbox.checked::after {
  content: '✓';
  color: black;
  font-size: 14px;
}

.chat-footer-buttons {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 30px;
}

.chat-btn {
  flex: 1;
  padding: 14px 0;
  border-radius: 15px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
}

.chat-btn.cancel {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.chat-btn.create {
  background-color: #e1ff00;
  color: black;
  border: none;
}

.profile-wrapper {
  background-color: #2e2e2e;
  padding: 30px 20px;
  border-radius: 30px;
  margin: 30px auto;
  max-width: 500px;
  color: white;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.profile-picture {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e1ff00;
}

.profile-info .profile-name {
  font-size: 18px;
  font-weight: bold;
}

.profile-info .profile-role {
  font-size: 14px;
  color: #ccc;
  margin-top: 4px;
}

.profile-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.profile-field label {
  font-size: 12px;
  color: #aaa;
  display: block;
  margin-bottom: 5px;
}

.profile-field div {
  font-size: 14px;
  color: white;
}

.profile-actions {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.profile-btn {
  flex: 1;
  padding: 14px 0;
  border-radius: 15px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
}

.profile-btn.edit {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.profile-btn.logout {
  background-color: #e1ff00;
  color: black;
  border: none;
}

.user-overview-wrapper {
  background-color: #2e2e2e;
  padding: 30px 20px;
  border-radius: 30px;
  margin: 30px auto;
  max-width: 500px;
  color: white;
}

.user-overview-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: left;
}

.user-search-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 15px;
  background-color: #3c3c3c;
  border: none;
  color: white;
  font-size: 14px;
  margin-bottom: 25px;
}

.user-card {
  background-color: #3c3c3c;
  padding: 15px 20px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.user-card:hover {
  background-color: #474747;
}

.user-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.user-name {
  font-size: 16px;
  font-weight: bold;
}

.user-role {
  font-size: 13px;
  color: #aaa;
}

.user-icon {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}

.settings-wrapper {
  background-color: #2e2e2e;
  padding: 30px 20px;
  border-radius: 30px;
  margin: 30px auto;
  max-width: 500px;
  color: white;
}

.settings-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 25px;
}

.settings-section {
  margin-bottom: 25px;
}

.settings-label {
  font-size: 14px;
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
  color: #ccc;
}

.settings-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: none;
  background-color: #3c3c3c;
  color: white;
  font-size: 14px;
  box-sizing: border-box;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 6.646a.5.5 0 0 1 .708 0L8 9.293l2.646-2.647a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
}

.settings-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #3c3c3c;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
}

/* Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #888;
  transition: 0.4s;
  border-radius: 34px;
}

.slider::before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #e1ff00;
}

input:checked + .slider::before {
  transform: translateX(18px);
}

.settings-save-btn {
  width: 100%;
  padding: 14px 0;
  background-color: #e1ff00;
  color: black;
  font-weight: bold;
  font-size: 14px;
  border-radius: 15px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

.chat-wrapper {
  max-width: 500px;
  margin: 0 auto;
  color: white;
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 0 20px;
}

.chat-header {
  padding-top: 20px;
}

.chat-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header-top img {
  width: 24px;
}

.chat-name-group {
  margin-left: 5px;
}

.chat-name {
  font-size: 18px;
  font-weight: bold;
}

.chat-sub {
  font-size: 12px;
  color: #aaa;
}

.chat-header-icons {
  display: flex;
  gap: 2,5px;
  flex-direction: row;
}

.chat-header-icons img {
  margin-left: 5px;
  width: 18px;
  cursor: pointer;
}

.chat-messages {
  flex: 1;
  padding: 20px 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.message {
  max-width: 80%;
  font-size: 14px;
  line-height: 1.4;
}

.message-meta {
  font-size: 10px;
  color: #999;
  margin-bottom: 5px;
}

.message-bubble {
  padding: 12px 16px;
  border-radius: 18px;
  word-break: break-word;
}

.message-sent .message-bubble {
  background-color: #e1ff00;
  color: black;
  align-self: flex-end;
  margin-left: auto;
  border-bottom-right-radius: 0;
}

.message-received .message-bubble {
  background-color: white;
  color: black;
  align-self: flex-start;
  margin-right: auto;
  border-bottom-left-radius: 0;
}

.no-messages {
  color: #aaa;
  font-size: 13px;
  text-align: center;
  margin-top: 50px;
}

.chat-input-area {
  display: flex;
  align-items: center;
  padding: 15px 0;
  gap: 10px;
}

.chat-input-area input {
  flex: 1;
  background-color: #3a3a3a;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 12px 20px;
  font-size: 14px;
}

.attach-btn, .send-btn {
  background-color: transparent;
  border: none;
  width: 30px;
  cursor: pointer;
}



/* Responsive Layout */
@media screen and (min-width: 375px) {
  .side-bar-links {
    height: 70vh;
  }

  .welcome {
    max-width: 335px;
  }
}

@media screen and (min-width: 425px) {
  .damage-header-buttons {
    flex-direction: row;
  }

  .damage-btn {
    width: 48%;
  }

  .welcome {
    max-width: 385px;
  }
}

@media screen and (min-width: 768px) {
  .damage-header-buttons {
    justify-content: flex-start;
  }

  .welcome {
    max-width: 460px;
  }
}

.switch {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 18px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

.slider::before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #e1ff00;
}

input:checked + .slider::before {
  transform: translateX(16px);
}
