body {
  margin: 0px !important;
}

/* visually-hidden-focusable class should by default be hidden, on first tab hit from address bar it should get focused */
.visually-hidden-focusable {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/**
 * Primary Local Tasks (Drupal 11)
 */

#block-shagun-primary-local-tasks {
  margin: 1rem 0;
}

#block-shagun-primary-local-tasks>ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

#block-shagun-primary-local-tasks>ul>li {
  margin: 0;
}

#block-shagun-primary-local-tasks>ul>li>a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.625rem 1.25rem;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  background: #ffffff;
  color: #222222;
  text-decoration: none;
  font-weight: 600;
  transition: all .25s ease;
}

#block-shagun-primary-local-tasks>ul>li>a:hover,
#block-shagun-primary-local-tasks>ul>li>a:focus {
  background: #511550;
  color: #fff;
  border-color: #511550;
}

#block-shagun-primary-local-tasks>ul>li>a.is-active,
#block-shagun-primary-local-tasks>ul>li>a[aria-current="page"] {
  background: var(--theme-color, #511550);
  border-color: var(--theme-color, #511550);
  color: #fff;
}

/* Tablet */

@media (max-width: 991px) {

  #block-shagun-primary-local-tasks>ul {
    gap: 0.5rem;
  }

  #block-shagun-primary-local-tasks>ul>li>a {
    padding: 0.55rem 1rem;
    font-size: 15px;
  }

}

/* Mobile */

@media (max-width: 767px) {

  #block-shagun-primary-local-tasks>ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  #block-shagun-primary-local-tasks>ul>li {
    width: 100%;
  }

  #block-shagun-primary-local-tasks>ul>li>a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

}

/**
 * Layout Builder Help Block
 */

#block-shagun-help {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--theme-color, #511550);
  background-color: #f8f9fa;
  border-radius: 6px;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

#block-shagun-help p {
  margin: 0 0 1rem;
}

#block-shagun-help p:last-child {
  margin-bottom: 0;
}

#block-shagun-help a {
  color: var(--theme-color, #511550);
  font-weight: 600;
  text-decoration: none;
  transition: color .3s ease;
}

#block-shagun-help a:hover,
#block-shagun-help a:focus {
  color: #000;
  text-decoration: underline;
}

/* Tablet */
@media (max-width: 991px) {
  #block-shagun-help {
    padding: 1rem;
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  #block-shagun-help {
    margin: 1rem 0;
    padding: 0.875rem;
    font-size: 14px;
    line-height: 1.6;
  }
}

/**
 * Drupal Status Messages
 */

[data-drupal-messages] {
  margin: 1rem 0 1.5rem;
}

[data-drupal-messages]>div {
  position: relative;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  border-left: 4px solid #f39c12;
  background-color: #fff8e5;
  color: #7a5b00;
  font-size: 15px;
  line-height: 1.6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Success */

[data-drupal-messages] [aria-label="Status message"] {
  background: #edf9f0;
  border-left-color: #28a745;
  color: #155724;
}

/* Warning */

[data-drupal-messages] [aria-label="Warning message"] {
  background: #fff8e5;
  border-left-color: #f39c12;
  color: #856404;
}

/* Error */

[data-drupal-messages] [aria-label="Error message"] {
  background: #fdecec;
  border-left-color: #dc3545;
  color: #721c24;
}

/* Links */

[data-drupal-messages] a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
}

[data-drupal-messages] a:hover,
[data-drupal-messages] a:focus {
  text-decoration: none;
}

/* Hide duplicate heading while keeping it accessible */

[data-drupal-messages] .visually-hidden {
  position: absolute !important;
}

/* Mobile */

@media (max-width: 767px) {
  [data-drupal-messages]>div {
    padding: 0.875rem 1rem;
    font-size: 14px;
  }
}

/**
 * Drupal 11 Layout Builder Form
 */

/* ------------------------------------------------------------------
 * Layout Builder Form
 * ------------------------------------------------------------------ */

.node-layout-builder-form {
  max-width: 100%;
  margin: 0 auto;
}

/* ------------------------------------------------------------------
 * Top Action Bar
 * ------------------------------------------------------------------ */

.node-layout-builder-form #edit-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 0 25px;
  padding: 15px 20px;
  background: #f8f8f8;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
}

/* ------------------------------------------------------------------
 * Buttons
 * ------------------------------------------------------------------ */

.node-layout-builder-form #edit-actions .button {
  min-height: 44px;
  padding: 0 22px;
  border: 2px solid #511550;
  border-radius: 5px;
  background: #511550;
  color: #ffffff;
  cursor: pointer;
  transition: all .3s ease;
  font-weight: 600;
}

.node-layout-builder-form #edit-actions .button:hover,
.node-layout-builder-form #edit-actions .button:focus {
  background: #ffffff;
  color: #511550;
  border-color: #511550;
}

.node-layout-builder-form #edit-actions .button--primary {
  background: #511550;
  color: #ffffff;
  border-color: #511550;
}

.node-layout-builder-form #edit-actions .button--primary:hover,
.node-layout-builder-form #edit-actions .button--primary:focus {
  background: #ffffff;
  color: #511550;
  border-color: #511550;
}

/* ------------------------------------------------------------------
 * Preview Toggle
 * ------------------------------------------------------------------ */

#edit-preview-toggle {
  margin-left: auto;
}

#edit-preview-toggle .form-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

#edit-preview-toggle label {
  margin: 0;
  font-weight: 600;
  cursor: pointer;
}

/* ------------------------------------------------------------------
 * Layout Builder Message
 * ------------------------------------------------------------------ */

.layout-builder__message {
  margin-bottom: 20px;
}

/* ------------------------------------------------------------------
 * Revision Panel
 * ------------------------------------------------------------------ */

#edit-revision-information {
  margin-top: 30px;
  border: 1px solid #ececec;
  border-radius: 8px;
  background: #fff;
}

#edit-revision-information summary {
  padding: 15px 20px;
  font-weight: 700;
  cursor: pointer;
  background: #f7f7f7;
}

#edit-revision-information .form-item {
  margin: 20px;
}

#edit-revision-information textarea {
  width: 100%;
  min-height: 140px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px;
  resize: vertical;
}

/* ------------------------------------------------------------------
 * Hide Vertical Tabs
 * ------------------------------------------------------------------ */

.vertical-tabs,
.vertical-tabs__menu,
.vertical-tabs__panes,
.vertical-tabs__active-tab {
  display: none !important;
}

/* ------------------------------------------------------------------
 * Responsive
 * ------------------------------------------------------------------ */

@media (max-width: 991px) {

  .node-layout-builder-form #edit-actions {
    gap: 10px;
  }

  #edit-preview-toggle {
    width: 100%;
    margin-left: 0;
  }

}

@media (max-width: 767px) {

  .node-layout-builder-form #edit-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .node-layout-builder-form #edit-actions .button {
    width: 100%;
  }

  #edit-preview-toggle {
    width: 100%;
  }

  #edit-preview-toggle .form-item {
    justify-content: center;
  }

}

/**
 * Drupal Toolbar Fix
 */

/* Toolbar */
#toolbar-bar,
.toolbar-bar {
  z-index: 999998 !important;
}

/* Administration menu */
.toolbar-menu-administration,
.toolbar-menu {
  z-index: 999999 !important;
}

/* Dropdown menus */
.toolbar-menu-administration .toolbar-menu,
.toolbar-menu-administration ul,
.toolbar-menu-administration li,
.toolbar-menu-administration .toolbar-box,
.toolbar-menu-administration .toolbar-tray {
  z-index: 999999 !important;
}

/* Toolbar trays */
.toolbar-tray,
.toolbar-tray-horizontal,
.toolbar-tray-vertical {
  z-index: 999999 !important;
}

/* Contextual links */
.contextual,
.contextual-links {
  z-index: 999997 !important;
}

.room-details__input-box input[type="tel"] {
  height: 50px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(var(--hotelux-black-rgb), .15);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 50px;
  color: var(--hotelux-gray);
  display: block;
}

/* Common wrapper */
.user-login-form,
.user-pass,
.user-register-form {
  max-width: 700px;
  margin: 0 auto;
}

/* Form items */
.user-login-form .form-item,
.user-pass .form-item,
.user-register-form .form-item {
  margin-bottom: 25px;
}

/* Inputs */
.user-login-form input.form-text,
.user-login-form input.form-email,
.user-login-form input.form-password,
.user-pass input.form-text,
.user-pass input.form-email,
.user-register-form input.form-text,
.user-register-form input.form-email,
.user-register-form input.form-password {
  width: 100%;
  height: 70px;
  padding: 0 35px;
  border: 1px solid #e5e5e5;
  background: #f7f7f7;
  font-size: 18px;
  border-radius: 0;
  box-sizing: border-box;
}

/* Hide labels */
.user-login-form label,
.user-pass label,
.user-register-form label {
  display: none;
}

/* Hide descriptions */
.user-login-form .description,
.user-pass .description,
.user-register-form .description {
  display: none;
}

/* Buttons */
.user-login-form .form-actions,
.user-pass .form-actions,
.user-register-form .form-actions {
  margin-top: 20px;
}

.user-login-form .form-actions input,
.user-pass .form-actions input,
.user-register-form .form-actions input {
  width: 100%;
}

.user-login-form .thm-btn,
.user-pass .thm-btn,
.user-register-form .thm-btn {
  width: 100%;
}

/* Error messages */
.user-login-form .messages,
.user-pass .messages,
.user-register-form .messages {
  margin-bottom: 20px;
}

/* Password help text */
.user-register-form .password-suggestions,
.user-register-form .password-strength,
.user-register-form .password-confirm-message {
  display: none;
}

/* Required marker */
.user-login-form .form-required::after,
.user-pass .form-required::after,
.user-register-form .form-required::after {
  display: none;
}

/* Error message */
label.error,
span.error,
.form-error {
  display: block;
  color: #dc3545;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 5px;
}

/* Invalid fields */
input.error,
textarea.error,
select.error {
  border-color: #dc3545 !important;
  box-shadow: none;
}

/* Optional: Highlight focused invalid field */
input.error:focus,
textarea.error:focus,
select.error:focus {
  border-color: #dc3545 !important;
  outline: none;
}

.logout-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    font-size: 20px;
    transition: all .3s ease;
}

.logout-icon:hover {
    color: var(--thm-primary); /* Replace with your theme color */
}

/* ==========================================================
   DRUPAL FRONTEND NODE FORM
========================================================== */

.node-form {
    max-width: 1100px;
    margin: 50px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    overflow: hidden;
}

/* ==========================================================
   DETAILS
========================================================== */

.node-form details.required-fields {
    margin: 0 0 35px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    overflow: hidden;
}

.node-form details.required-fields > summary {
    background: #511550;
    color: #fff;
    padding: 14px 22px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    user-select: none;
    display: flex;
    align-items: center;
}

.node-form details.required-fields > summary::-webkit-details-marker {
    display: none;
}

.node-form details.required-fields > summary::marker {
    display: none;
}

.node-form details.required-fields > summary::before {
    content: "−";
    font-size: 22px;
    font-weight: 700;
    margin-right: 14px;
    width: 18px;
}

.node-form details.required-fields:not([open]) > summary::before {
    content: "+";
}

/* Space around all children except summary */
.node-form details.required-fields > *:not(summary) {
    padding-left: 30px;
    padding-right: 30px;
}

/* First field */
.node-form details.required-fields > *:nth-child(2) {
    padding-top: 30px;
}

/* Last field */
.node-form details.required-fields > *:last-child {
    padding-bottom: 30px;
}

/* ==========================================================
   FORM ITEMS
========================================================== */

.node-form .form-item {
    margin: 0 0 28px !important;
}

.node-form label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
}

.node-form .form-required::after {
    color: #dc3545;
}

/* ==========================================================
   INPUTS
========================================================== */

.node-form input[type=text],
.node-form input[type=email],
.node-form input[type=tel],
.node-form input[type=url],
.node-form input[type=number],
.node-form input[type=password],
.node-form input[type=date],
.node-form input[type=search],
.node-form textarea,
.node-form select {

    width: 100%;
    min-height: 54px;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-size: 15px;
    transition: .3s;
    box-sizing: border-box;
}

.node-form textarea {
    min-height: 180px;
    resize: vertical;
}

.node-form input:focus,
.node-form textarea:focus,
.node-form select:focus {
    outline: none;
    border-color: #511550;
    box-shadow: 0 0 0 4px rgba(81,21,80,.08);
}

/* ==========================================================
   NICE SELECT
========================================================== */

.node-form .nice-select {
    width: 100%;
    height: 54px;
    line-height: 54px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding-left: 18px;
    margin-top: 0;
    float: none;
}

.node-form .nice-select .current {
    color: #555;
}

.node-form .nice-select .list {
    width: 100%;
    border-radius: 8px;
}

/* ==========================================================
   CKEDITOR
========================================================== */

.node-form .ck-editor {
    margin-top: 10px;
}

.node-form .ck.ck-toolbar {
    border: 1px solid #ddd;
    border-radius: 8px 8px 0 0;
    background: #fafafa;
}

.node-form .ck.ck-editor__main>.ck-editor__editable {
    min-height: 220px;
    border-radius: 0 0 8px 8px;
}

/* ==========================================================
   FILES
========================================================== */

.node-form input[type=file] {
    width: 100%;
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 14px;
    background: #fafafa;
}

.node-form .image-widget img {
    border-radius: 8px;
    margin-bottom: 12px;
}

.node-form .image-widget .button {
    margin-top: 12px;
}

/* ==========================================================
   DESCRIPTION
========================================================== */

.node-form .description {
    margin-top: 8px;
    color: #777;
    font-size: 13px;
}

/* ==========================================================
   FIELDSETS
========================================================== */

.node-form fieldset {
    margin: 25px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
}

.node-form legend {
    padding: 0 10px;
    font-weight: 600;
}

/* ==========================================================
   TABLES
========================================================== */

.node-form table {
    width: 100%;
}

.node-form table th,
.node-form table td {
    padding: 12px;
}

/* ==========================================================
   BUTTONS
========================================================== */

.node-form .form-actions {
    text-align: center;
    padding: 10px 30px 40px;
}

.node-form .button,
.node-form input[type=submit] {
    background: #511550;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 34px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.node-form .button:hover,
.node-form input[type=submit]:hover {
    background: #6d1c69;
}

/* ==========================================================
   ERRORS
========================================================== */

.node-form .form-item--error input,
.node-form .form-item--error textarea,
.node-form .form-item--error select {
    border-color: #dc3545;
}

.node-form .form-item--error-message {
    color: #dc3545;
    margin-top: 6px;
    font-size: 13px;
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 768px) {

    .node-form {
        margin: 20px;
    }

    .node-form details.required-fields > summary {
        font-size: 16px;
        padding: 12px 18px;
    }

    .node-form details.required-fields > *:not(summary) {
        padding-left: 20px;
        padding-right: 20px;
    }

    .node-form details.required-fields > *:nth-child(2) {
        padding-top: 20px;
    }

    .node-form details.required-fields > *:last-child {
        padding-bottom: 20px;
    }

    .node-form .form-actions {
        padding: 10px 20px 30px;
    }

}

.node-preview-backlink{
  background-color: #000;
  padding: 10px;
  color: #fff;
}

.node-preview-container .form-item-view-mode{
  display: none;
}

.form-item-field-twitter-0-title, .form-item-field-youtube-0-title, .form-item-field-facebook-0-title, .form-item-field-linkedin-0-title, .form-item-field-instagram-0-title {
  display: none;
}

.login-one__form #block-shagun-primary-local-tasks{
  display: none;
}

div[data-drupal-selector="views-exposed-form-search-page-1"] label, div[data-drupal-selector="views-exposed-form-search-page-1"] input,
div[data-drupal-selector="views-exposed-form-search-page-1"] .form-submit {
    display: none !important;
}

div[data-drupal-selector="views-exposed-form-search-page-1"]{
  display: none !important;
}

/* Limit the maximum height of the nice-select dropdown menu */
.nice-select .list {
  max-height: 320px; /* Adjust based on your item height (~10 items) */
  overflow-y: auto !important;
}

/* Optional: Clean, custom scrollbar styling */
.nice-select .list::-webkit-scrollbar {
  width: 6px;
}

.nice-select .list::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.nice-select .list::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

.nice-select .list::-webkit-scrollbar-thumb:hover {
  background: #555;
}


/* Fixed container at the top of the dropdown list */
.nice-select .ns-search-box {
  padding: 6px 8px;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 5;
  border-bottom: 1px solid #e8e8e8;
}

/* Search input styling */
.nice-select .ns-search-input {
  width: 100%;
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 13px;
  outline: none;
  box-sizing: border-box;
}

.nice-select .ns-search-input:focus {
  border-color: #888;
}

/* Ensure list keeps max-height and scrolling */
.nice-select .list {
  max-height: 320px;
  overflow-y: auto !important;
}

/* ==========================================================================
   CKEditor Dynamic Content - Styles for .blog-body_content
   ========================================================================== */

/* Container Setup */
.blog-body_content {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Headings */
.blog-body_content h1,
.blog-body_content h2,
.blog-body_content h3,
.blog-body_content h4,
.blog-body_content h5,
.blog-body_content h6 {
  color: inherit;
  font-family: inherit;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
}

.blog-body_content h1 { font-size: 2.25rem; }
.blog-body_content h2 { font-size: 1.875rem; }
.blog-body_content h3 { font-size: 1.5rem; }
.blog-body_content h4 { font-size: 1.25rem; }
.blog-body_content h5 { font-size: 1.1rem; }
.blog-body_content h6 { font-size: 1rem; }

/* Paragraphs & Text Elements */
.blog-body_content p {
  line-height: 1.75;
  margin-top: 0;
  margin-bottom: 1.25em;
  color: inherit;
  font-family: inherit;
}

.blog-body_content strong,
.blog-body_content b {
  font-weight: 700;
}

.blog-body_content em,
.blog-body_content i {
  font-style: italic;
}

/* Links */
.blog-body_content a {
  color: inherit;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.blog-body_content a:hover {
  opacity: 0.8;
}

/* Blockquotes & Quotes */
.blog-body_content blockquote {
  position: relative;
  margin: 2em 0;
  padding: 1.5em 2em;
  border-left: 4px solid currentColor;
  background-color: rgba(0, 0, 0, 0.03);
  font-style: italic;
  line-height: 1.6;
}

.blog-body_content blockquote p {
  margin-bottom: 0.5em;
}

.blog-body_content blockquote p:last-child {
  margin-bottom: 0;
}

.blog-body_content blockquote cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  margin-top: 0.75em;
  font-size: 0.9em;
  opacity: 0.85;
}

/* Lists */
.blog-body_content ul,
.blog-body_content ol {
  margin-top: 0;
  margin-bottom: 1.5em;
  padding-left: 1.75em;
}

.blog-body_content ul {
  list-style-type: disc;
}

.blog-body_content ol {
  list-style-type: decimal;
}

.blog-body_content li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}

.blog-body_content li > ul,
.blog-body_content li > ol {
  margin-top: 0.5em;
  margin-bottom: 0;
}

/* Images & Media */
.blog-body_content img,
.blog-body_content figure img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5em auto;
  border-radius: 4px;
}

.blog-body_content figure {
  margin: 2em 0;
}

.blog-body_content figcaption {
  text-align: center;
  font-size: 0.875em;
  margin-top: 0.5em;
  opacity: 0.75;
}

/* Tables */
.blog-body_content table {
  width: 100%;
  margin: 2em 0;
  border-collapse: collapse;
  font-size: 0.95em;
}

.blog-body_content th,
.blog-body_content td {
  padding: 0.75em 1em;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
}

.blog-body_content th {
  font-weight: 700;
  background-color: rgba(0, 0, 0, 0.04);
}

/* HR Divider */
.blog-body_content hr {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  margin: 2.5em 0;
}

.node-category-profiles-edit-form .field--name-field-category {
  display: none;
}

.chat-icon a {
  position: relative;
  display: block;
  width: 45px;
  height: 45px;
  line-height: 47px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  border-radius: 5px;
  background: #52ce5e;
  z-index: 1;
  border: none;
  margin-bottom:20px;
}

.chat-icon a:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background-color: rgba(var(--hotelux-base-rgb), .20);
  border-radius: 5px;
  z-index: -1;
}

/* Main ID Container */
#block-shagun-content .user-form {
  max-width: 650px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* All Form Elements Scoped Inside Main ID */
#block-shagun-content .user-form .form-wrapper,
#block-shagun-content .user-form .form-item {
  margin-bottom: 1.25rem;
}

/* Labels */
#block-shagun-content .user-form label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: #2d3748;
  margin-bottom: 0.35rem;
}

#block-shagun-content .user-form .form-required::after {
  content: " *";
  color: #e53e3e;
  font-weight: bold;
}

/* Form Inputs (Text, Email, Password) */
#block-shagun-content .user-form input[type="text"],
#block-shagun-content .user-form input[type="email"],
#block-shagun-content .user-form input[type="password"] {
  width: 100%;
  padding: 0.625rem 0.85rem;
  font-size: 1rem;
  color: #1a202c;
  background-color: #f7fafc;
  border: 1px solid #cbd5e0;
  border-radius: 6px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#block-shagun-content .user-form input[type="text"]:focus,
#block-shagun-content .user-form input[type="email"]:focus,
#block-shagun-content .user-form input[type="password"]:focus {
  outline: none;
  border-color: #3182ce;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.2);
}

/* Help & Description Text */
#block-shagun-content .user-form .description {
  font-size: 0.85rem;
  color: #718096;
  margin-top: 0.35rem;
  line-height: 1.4;
}

#block-shagun-content .user-form .description a {
  color: #3182ce;
  text-decoration: none;
}

#block-shagun-content .user-form .description a:hover {
  text-decoration: underline;
}

/* Password Strength & Confirmation (Password Policy Module) */
#block-shagun-content .user-form .password-parent,
#block-shagun-content .user-form .confirm-parent {
  margin-bottom: 1rem;
}

#block-shagun-content .user-form .password-strength {
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

#block-shagun-content .user-form .password-strength__meter {
  height: 6px;
  background-color: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.25rem;
}

#block-shagun-content .user-form .password-strength__indicator {
  height: 100%;
  width: 0%;
  transition: width 0.3s ease, background-color 0.3s ease;
}

#block-shagun-content .user-form .password-strength__text {
  font-weight: 600;
}

#block-shagun-content .user-form .password-confirm-message {
  font-size: 0.85rem;
  margin-top: 0.35rem;
  font-weight: 500;
}

/* Submit Button */
#block-shagun-content .user-form .form-actions {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #edf2f7;
}

#block-shagun-content .user-form input[type="submit"].button--primary {
  background-color: #3182ce;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

#block-shagun-content .user-form input[type="submit"].button--primary:hover {
  background-color: #2b6cb0;
}

#block-shagun-content .user-form input[type="submit"].button--primary:active {
  transform: translateY(1px);
}

/* Autocomplete dropdown - Start */
.ui-autocomplete {
  position: absolute !important;
  z-index: 99999 !important;

  box-sizing: border-box;
  width: 100% !important;
  max-width: 688px;

  margin: 0 !important;
  padding: 0 !important;

  background: #fff;
  border: 1px solid #d5d5d5;
  border-top: 0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);

  list-style: none;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 60vh;
  -webkit-overflow-scrolling: touch;
}

/* Individual suggestion */
.ui-autocomplete .ui-menu-item {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Suggestion text */
.ui-autocomplete .ui-menu-item-wrapper {
  display: block;
  box-sizing: border-box;

  padding: 14px;
  color: #111;
  background: #fff;

  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;

  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* Hover / keyboard selected item */
.ui-autocomplete .ui-menu-item-wrapper:hover,
.ui-autocomplete .ui-menu-item-wrapper.ui-state-active {
  color: #111;
  background: #f7f7f7;
}

/* Remove default jQuery UI styling */
.ui-autocomplete .ui-state-active {
  margin: 0;
  border: 0;
}

/* Search form */
.global-search-form,
.hero-search,
.search-form {
  position: relative;
  z-index: 1000;
}

/* Mobile */
@media (max-width: 767px) {
  .ui-autocomplete {
    max-width: none !important;
    max-height: 50vh;
  }

  .ui-autocomplete .ui-menu-item-wrapper {
    padding: 14px 12px;
    font-size: 16px;
  }
}

/* Autocomplete dropdown - End */
