/* Reset & Base */
body {
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden; /* prevent horizontal shake */
}

/* ======================
   Layout Containers
   ====================== */

/* Mobile-first default */
.container1 {
  display: none;   /* hide desktop container on mobile */
}

.container2 {
  display: block;  /* show mobile container */
}

/* Desktop breakpoint */
@media only screen and (min-width: 992px) {
  .container1 {
    display: block; /* or flex if side-by-side layout is needed */
  }
  .container2 {
    display: none;
  }
}

/* ======================
   Columns & Rows
   ====================== */
.col1 {
  width: 100%;
  padding: 0 0 9px;
  box-sizing: border-box;
}

.row0 {
  background-color: #fff;
  font-size: 17px;
  display: flex;
  text-align: center;
}

.row1 {
  font-size: 17px;
  text-align: center;
}

.row2 {
  text-indent: 12px;
}

.row2,
.row4 {
  border-bottom: 1px solid #ff7d00;
  font-size: 15px;
  background: linear-gradient(
    90deg,
    rgb(253 222 166) 0%,
    rgb(255 255 255) 33%,
    rgb(251 202 142 / 51%) 100%
  );
  border: 1px solid #ff8763;
  box-shadow: 2px 2px 5px 2px rgb(255 161 107 / 40%);
  color: #a33501;
  padding: 6px 0;
  display: flex;
}

.row3 {
  border: 1px solid #ff7d00;
  box-shadow: 2px 2px 5px 2px rgb(255 161 107 / 40%);
}

.row5 {
  display: flex;
  padding: 7px;
  border: 1px solid #ff7d00;
  background: #f1e0b1;
  align-items: center;
}

/* ======================
   Words & Counts
   ====================== */
.words-wrapper {
  display: flex;
  flex-direction: row-reverse;
  float: right;
  margin-left: auto;
  margin-right: 25px;
}

.words-wrapper .words-count {
  color: #c94040;
  text-shadow: 1px 1px 3px #ffaa89;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  padding-left: 12px;
}

/* ======================
   Content
   ====================== */
.entry-content {
  margin: 10px !important;
}

textarea {
  width: 98%;
  height: 230px;
  padding: 3px;
  line-height: 25px;
  color: #071a2a;
  position: relative;
  font-size: 18px !important;
  font-weight: 500;
  letter-spacing: normal;
  border-color: transparent !important;
  word-spacing: 2px;
}

/* ======================
   Buttons
   ====================== */
.btn-primary,
.btnr {
  background: #810b52;
  color: #fff;
  padding: 5px 5px;
  margin-left: 5px;
  font-size: 15px;
  font-weight: 500;
  text-shadow: 1px 1px 6px #fff;
  border: none;
  position: relative;
  cursor: pointer;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.4);
}

.txtbtn {
  padding: 8px 0;
  display: flex;
}

.btn-primary:hover,
.btnr:hover,
.btn-primary:focus {
  background: #7721f3 !important;
  text-shadow: 1px 1px 3px #fff;
  overflow: auto;
  border-color: darkred;
}

.insertBtn {
  padding: 5px 12px;
  color: #000;
  background: #fff5d1;
  font-size: 18px;
  font-weight: 500;
  margin-left: 7px;
  border: none;
  cursor: pointer;
}

button.insertBtn:hover {
  background: grey;
  box-shadow: 1px 1px 9px #fff;
}

/* ======================
   Dropdown
   ====================== */
.dropdown {
  position: relative;
  display: inline-block;
  margin-right: 0px;
}

.dropdown-content {
  display: none;
  position: absolute;
  min-width: 100px;
  overflow: hidden;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  color: #000;
  padding: 5px;
  text-decoration: none;
}

.dropdown-content a:hover {
  color: #fff;
  background-color: #00a4bd;
}

/* ======================
   Buttons (extra)
   ====================== */
.btn-success {
  color: #fff !important;
  background: #a33485 !important;
  border-color: #4cae4c;
}

.btn {
  background: #fdfdfd;
  font-weight: 600;
  margin: 0 5px;
  font-size: 18px;
  color: #993434;
  border-radius: 3px;
  padding: 6px;
  box-shadow: 2px 2px 3px 2px rgb(255 161 107);
  white-space: nowrap;
  display: inline-block;
  border: 1px solid #e7c915;
}

/* ======================
   Rectangles & Toggles
   ====================== */
#rectangle,
.rectangle {
  width: 100%;
  height: auto;
  background-color: #fff20030;
  display: none;
  font-weight: bold;
  padding: 5px;
  position: relative;
  border: 1px solid #ff7d00;
  box-shadow: 2px 2px 5px 2px rgb(255 161 107 / 40%);
}

#close-button,
.close-button {
  position: absolute;
  top: 5px;
  font-family: arial;
  right: 5px;
  font-size: 16px;
  cursor: pointer;
}

.toggleButton {
  margin-left: auto;
  margin-right: 10px;
  position: relative;
  cursor: pointer;
}

/* ======================
   Navbar
   ====================== */
.navbar {
  display: flex;
  background-color: #f9edd3;
  border: 1px solid #ff7d00;
  box-shadow: 2px 2px 5px 2px rgb(255 161 107 / 40%);
  height: 45px;
}

.navbar a {
  color: #6e2626;
  text-shadow: 1px 1px 3px #ffaa89;
  text-decoration: none;
  border-right: 1px solid #bbb;
  padding: 10px 16px;
  font-size: 16px;
}

.navbar a.active {
  background-color: #fff;
  color: #6e2626;
}

.navbar a:hover:not(.active) {
  text-shadow: 1px 1px 9px #950a0a;
  font-weight: 400;
  background: #fff0da;
  text-decoration: none;
  border-right: 1px solid #bbb;
}
/* ======================
   Share Icons
   ====================== */
.share-icon {
  display: flex;
  padding: 0;
  float: right;
}

button.share-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  fill: #fff;
  cursor: pointer;
}

#whatsapp_link {
  background-color: #2ab540;
}

#whatsapp_link:hover {
  background-color: #fff;
}

#whatsapp_link:hover svg {
  fill: #2ab540;
}

#twitter_link {
  background-color: #00aced;
}

#twitter_link:hover {
  background-color: #fff;
}

#twitter_link:hover svg {
  fill: #00aced;
}

.share-icon ul {
  list-style-type: none;
  margin: 0;
  display: flex;
  padding-left: 7px;
}

.share-icon ul li {
  padding: 0;
}

.share-icon ul li:first-child {
  padding-right: 0;
}

.share-icon ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  fill: #fff;
  margin-right: 5px;
}

.share-icon ul li.wa a {
  background-color: #2ab540;
}

.share-icon ul li.wa a:hover {
  background-color: #fff;
}

.share-icon ul li.wa a:hover svg {
  fill: #2ab540;
}

.share-icon ul li.tw a {
  background-color: #00aced;
}

.share-icon ul li.tw a:hover {
  background-color: #fff;
}

.share-icon ul li.tw a:hover svg {
  fill: #00aced;
}
.no-auto-ads {
  display: flex;
  flex-direction: column;
}
.no-auto-ads {
  data-ad-format: "none";
}