.elementor-33037 .elementor-element.elementor-element-ac1c9c4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(min-width:768px){.elementor-33037 .elementor-element.elementor-element-ac1c9c4{--content-width:1180px;}}/* Start custom CSS for html, class: .elementor-element-9ddd8a8 *//* ==============================
   NAMESPACE ROOT
============================== */
.neucademytoolurlshortener {
  --control-height: 40px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* CARD */
.neucademytoolurlshortener .shortener-card {
  width: 100%;
  padding: 16px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  box-sizing: border-box;
}

/* ROW */
.neucademytoolurlshortener .shortener-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  flex-wrap: nowrap;
}

/* INPUTS */
.neucademytoolurlshortener .shortener-row input,
.neucademytoolurlshortener #shortUrl {
  flex: 1;
  min-width: 0;
  height: var(--control-height);
  padding: 0 12px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  box-sizing: border-box;
}

.neucademytoolurlshortener #shortUrl {
  margin-bottom: 10px;
}

/* BUTTON BASE */
.neucademytoolurlshortener button {
  height: var(--control-height);
  line-height: var(--control-height);
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.3s ease, transform 0.15s ease;
}

/* ACTIVE */
.neucademytoolurlshortener button:active,
.neucademytoolurlshortener button:focus-visible {
  background: #000000 !important;
  transform: scale(0.98);
  outline: none;
}

/* SHORTEN */
.neucademytoolurlshortener .shorten-btn {
  background: #0000FF;
  padding: 0 18px;
}
.neucademytoolurlshortener .shorten-btn:hover {
  background: linear-gradient(135deg, #0000CC, #0000FF);
}

/* REFRESH */
.neucademytoolurlshortener .refresh-btn {
  background: #26A541;
  width: var(--control-height);
  padding: 0;
}
.neucademytoolurlshortener .refresh-btn:hover {
  background: linear-gradient(135deg, #1e8f38, #26A541);
  transform: rotate(90deg);
}

/* RESULT BOX */
.neucademytoolurlshortener #resultBox {
  margin-top: 12px;
  padding: 10px;
  border-radius: 10px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}

/* RESULT ACTIONS */
.neucademytoolurlshortener .result-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  width: 100%;
}

/* DESKTOP */
.neucademytoolurlshortener .result-actions button {
  width: 20%;
}

/* MOBILE */
@media (max-width: 768px) {
  .neucademytoolurlshortener .result-actions button {
    width: 50%;
  }
}

/* OPEN */
.neucademytoolurlshortener .open-btn {
  background: #E53935;
}
.neucademytoolurlshortener .open-btn:hover {
  background: linear-gradient(135deg, #B71C1C, #E53935);
}

/* COPY */
.neucademytoolurlshortener .copy-btn {
  background: #18cb96;
}
.neucademytoolurlshortener .copy-btn:hover {
  background: linear-gradient(135deg, #109f77, #18cb96);
}

/* ERROR */
.neucademytoolurlshortener #errorMsg {
  margin-top: 8px;
  color: #dc2626;
  font-size: 13px;
}/* End custom CSS */