/*
Bulk URL Tools
Copyright (C) 024, Melanto Ltd.
All Rights Reserved
https://melanto.com
*/
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  padding: 10px;
  text-align: center;
}

h1 {
  color: #333;
  margin: 10px;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.social-handles a {
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle;
}

.social-handles a img {
  height: 24px;
  width: auto;
}
.title-container {
  flex-grow: 1;
}

textarea {
  width: 80%;
  height: 150px;
  margin-top: 0px;
  padding: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  resize: vertical;
  border-radius: 5px;
}

button,
.tablinks {
  background-color: #4a90e2;
  color: white;
  border: none;
  margin-left: 10px;
  cursor: pointer;
  font-size: 12px;
  outline: none;
  border-radius: 5px;
}

button:hover,
.tablinks:hover {
  background-color: #357abd;
}

.tab {
  overflow: hidden;
  background-color: #4a90e2;
}

.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  padding: 14px 16px;
  font-size: 16px;
  margin-top: 0;
  color: white;
  border-radius: 5px 5px 0 0;
}

.tab button:hover {
  background-color: #357abd;
}

.tab button.active,
.tab button.active:hover {
  background-color: #286090;
  color: white;
}

.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #4a90e2;
  background-color: white;
  border-top: none;
  border-radius: 0 0 5px 5px;
}

#outputTextArea {
  margin-top: 0px;
}

.buttonGroup {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 5px;
  width: 90%;
}
.buttonGroup button {
  padding: 8px 10px;
}
.bigButton {
  padding: 10px;
  margin-top: 10px;
  font-size: 16px;
}
.tldCheckbox {
  margin-top: 6px;
}

.info {
  text-align: left;
  color: #6a6a6a;
  margin: 0px;
  padding: 0px;
}

.customCheckbox {
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
  margin-left: 10px;
}

.customCheckbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.customCheckbox .checkmark {
  position: absolute;
  top: 50%;
  left: -25px;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 3px;
  transform: translateY(-50%);
}

.customCheckbox input:checked ~ .checkmark {
  background-color: #4a90e2;
}

.customCheckbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.customCheckbox input:checked ~ .checkmark:after {
  display: block;
}

.customCheckbox .checkmark:after {
  left: 7px;
  top: 3px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.logo img {
  height: 64px;
  margin: 0px;
}

.title-container h1 {
  font-size: 20px;
  margin: 0;
  color: #333;
  text-align: left;
}

.subtitle {
  font-size: 14px;
  margin: 0;
  color: #555;
  text-align: left;
}

.qr-display {
  border: 1px solid #ddd;
  padding: 10px;
  margin: 0px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  min-height: 100px;
  width: 80%;
  border-radius: 5px;
  margin-bottom: 20px;
}
.input-group input {
  width: calc(20% - 10px);
  height: 40px;
  padding: 10px;
  margin: 5px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 14px;
  background-color: #ffffff;
  color: #333333;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .input-group input {
    width: calc(30% - 10px);
  }
}

@media (max-width: 480px) {
  .input-group input {
    width: calc(20% - 10px);
  }
}

.clear-button {
  background-color: #f7bbb7;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.8em;
  margin-right: 10px;
  margin-left: 0px;
}

.clear-button:hover {
  background-color: #d32f2f;
}

.user-guide {
  text-align: left;
  padding: 15px;
  margin-top: 20px;
  background-color: #f9f9f9;
  border-radius: 5px;
  border: 1px solid #ddd;
  color: #333;
  font-size: 0.9em;
}

.user-guide h4 {
  margin-bottom: 10px;
  color: #4a90e2;
  font-weight: bold;
}

.user-guide p {
  margin-bottom: 10px;
  line-height: 1.5;
}

.user-guide ul {
  margin-bottom: 10px;
}

.user-guide ul li {
  margin-bottom: 5px;
}

.user-guide ul li strong {
  color: #4a90e2;
}
.app-footer {
  text-align: center;
  padding: 20px;
  background-color: #f4f4f4;
  color: #333;
  border-top: 1px solid #ddd;
  position: relative;
  bottom: 0;
}

.app-footer a {
  color: #4a90e2;
  text-decoration: none;
}

.app-footer a:hover {
  text-decoration: underline;
}
.app-footer a {
  color: inherit;
  text-decoration: none;
}

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

@media (max-width: 768px) {
  .buttonGroup button,
  .bigButton,
  .tab button {
    font-size: 14px;
    padding: 10px 12px;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .bigButton {
    font-weight: bolder;
  }

  .header .logo img {
    height: 48px;
  }

  .header .title-container h1 {
    font-size: 18px;
  }

  .tab button {
    padding: 10px 12px;
    font-size: 14px;
  }

  .customCheckbox .checkmark {
    left: -20px;
  }
}

@media (max-width: 480px) {
  .buttonGroup,
  .qr-display,
  .user-guide,
  .app-footer {
    width: 95%;
  }

  textarea,
  .input-group input,
  .user-guide {
    width: 95%;
  }

  .buttonGroup {
    flex-direction: column;
    align-items: center;
  }

  .buttonGroup button,
  .bigButton,
  .tab button {
    width: 95%;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .bigButton {
    font-weight: bolder;
  }

  .header {
    flex-direction: column;
    align-items: center;
  }

  .header .logo img,
  .header .title-container h1 {
    margin-bottom: 10px;
  }

  .tab button {
    width: 95%;
    margin-top: 5px;
  }

  .customCheckbox {
    margin-top: 10px;
  }
}
