.Header__homeContent .Header__globalSearch input[role=search] {
    width: 210% !important;
}
.Header__homeNavbarFixed .Header__globalSearchAlt input[role=search] {
    width: 210% !important;
}

/* COMMUNITY SECTION */

.Layout__twoColumn {
    gap: 30px; /* Better breathing room between columns */
}

/* 2. Navigation / Filter Tabs (Top Menu) */
.TopicListLeftContainer__panelFilter {
    background: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 25px;
    border: 1px solid #edf2f7;
}
/* Container adjustment to fix alignment */
.FilterPanel__filterDrop {
    padding: 6px !important;
    background-color: #ffffff !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important; /* Space between buttons */
    box-shadow: 0 2px 4px rgba(0,0,0,0.02) !important;
    height: auto !important; /* Fixes the "cut" border issue */
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
}

/* Remove the old vertical dividers/borders */
.FilterPanel__filterList {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    flex: none !important; /* Prevents awkward stretching */
}

/* Style the links as clean tabs/pills */
.FilterPanel__filterPan a {
    display: inline-block !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #475569 !important; /* Professional Slate color */
    border-radius: 8px !important;
    text-decoration: none !important;
    transition: all 0.2s ease-in-out !important;
    border: 1px solid transparent !important;
}

/* Hover State */
.FilterPanel__filterPan a:hover {
    background-color: #f8fafc !important;
    color: #00aeef !important;
}

/* The Active (Orange) State - "Swak" and Aligned */
.FilterPanel__filterPan a.Link__active {
    background-color: #00aeef !important; /* Very light orange tint */
    color: #ffffff !important; /* Your brand orange */
    border: 1px solid #00aeef !important; /* Clean aligned border */
    box-shadow: none !important;
}

/* Fix for the dropdown arrow alignment */
.FilterPanel__arrowDown {
    margin-left: 4px !important;
    vertical-align: middle !important;
}

/* Remove any global Zoho borders that might still be showing */
.commonStyle__zt3LinkActive, .commonStyle__zt3Link {
    border-right: none !important;
}

/* 3. Main Topic Card */
.CommunityListItem__listItem {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid #edf2f7;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.CommunityListItem__listItem:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.CommunityListItem__topicTitle {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    text-decoration: none;
}

.CommunityListItem__description {
    color: #475569;
    line-height: 1.6;
    margin-top: 10px;
}

/* 4. Right Sidebar Styles */
.TopicListRightContainer__rightPanelDetail {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #edf2f7;
}


/* Sidebar Stats & Icons */
.TopicListRightContainer__deskHeading {
    font-size: 18px;
    font-weight: 700;
    margin: 15px 0 5px 0 !important;
}

.TopicListRightContainer__categoryDescription {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Follow Button (Bordered) */
.Button__primaryBorder {
    border: 1.5px solid #00aeef !important;
    color: #00aeef !important;
    border-radius: 8px !important;
    background: transparent;
    font-weight: 600;
    padding: 8px 16px !important;
}

/* 5. Badges & Metadata */
.Badge__announcement {
    background-color: #fee2e2 !important;
    color: #dc2626 !important;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.CommunityListItem__usrTimediff {
    color: #94a3b8;
    font-size: 13px;
}



















/* Already a member? */


/* Main Layout Container */
.UserContainer__logInMainContainer {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1000px;
  margin: 60px auto;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  margin-top: 0px !important;
}

/* Left Side: Sign In Card */
.UserContainer__innerContainer1 {
  flex: 1;
}

.Signin__loginTitle {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.Signin__loginSubTitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 30px;
}

/* Right Side: Options */
.UserContainer__innerContainer2 {
  flex: 1;
  padding-top: 20px;
}

.Signin__loginHalf {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f4f4f4; /* Subtle separator */
}

/* Hide the bulky SVG icons for a cleaner look if preferred, 
   or style them small and gray */
.Signin__loginUserIcon {
  margin-right: 20px;
  opacity: 0.5;
}

.Signin__userHeader {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

/* The Links (Sign Up, Reset, etc) */
.Signin__userLink {
  color: #00aeef !important;
  text-decoration: none;
  font-weight: 700;
  margin-left: 5px;
}

.Signin__userLink:hover {
  text-decoration: underline;
}

.Signin__userDesc {
  font-size: 14px;
  color: #888;
  line-height: 1.4;
  margin: 0;
}

/* Responsive fix for mobile */
@media (max-width: 768px) {
  .UserContainer__logInMainContainer {
    flex-direction: column;
    padding: 20px;
    gap: 40px;
  }
}




/* Title Styling */
.Header__searchTitle {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  /* Adds depth and ensures visibility on lighter backgrounds */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);

}

/* Description Styling */
.Header__description {
  font-family: 'Segoe UI', Roboto, sans-serif;
  font-size: 1.2rem;
  color: #ffffff; /* Slightly transparent white for hierarchy */
  line-height: 1.6;
  font-weight: 400;
  max-width: 700px;
  margin-top: 0;
  font-style: italic;
}

/* Optional: Smooth entry animation */
.Header__searchTitle, 
.Header__description {
  animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
  from { 
    opacity: 0; 
    transform: translateY(5px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}










/* SUBMIT TICKET */

/* 2. Primary Button Design (Submit/Actions) */
.Button__buttonCommon {
    background-color: #ffffff !important; /* Modern Blue */
    color: #00aeef !important;
    border: 1px solid #00aeef !important;
    border-radius: 8px !important;
    padding: 12px 24px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.025em;
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.Button__buttonCommon:hover {
    background-color: #00aeef !important; /* Darker Blue */
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transform: translateY(-1px);
    color: #ffffff !important;
}

.Button__buttonCommon:active {
    transform: translateY(0);
}

/* 3. Captcha Toggle Buttons (Image/Audio) */
.HCNewCaptcha__captchaButton {
    background-color: #f8fafc !important;
    color: #64748b !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 6px !important;
    padding: 8px 16px !important;
    margin-right: 4px;
    font-size: 11px !important;
    font-weight: 700 !important;
    transition: all 0.2s;
}

.HCNewCaptcha__captchaButtonActive {
    background-color: #ffffff !important;
    color: #3b82f6 !important;
    border-color: #3b82f6 !important;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.1);
}

/* 4. Form Input Polish */
.Input__formInput, .DropDown__dropdown {
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    background-color: #ffffff !important;
}

.Input__formInput:focus {
    border-color: #00aeef !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}



/* Headers & Section Titles */
.TicketFormLeftContainer__formTitle {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 32px !important;
    letter-spacing: -0.02em;
}

.TicketFormLeftContainer__sectionName {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin: 32px 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
}

/* Form Elements */
.Form__formElement {
    margin-bottom: 24px !important;
}

.FormElement__labelStyle {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}

.FormElement__mandatoryStar .FormElement__required::after {
    content: " *";
    color: #ef4444;
}

/* Inputs & Dropdowns */
.Input__formInput, 
.DropDown__dropdown,
.Input__productInput {
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    padding: 0px 16px !important;
    font-size: 15px !important;
    transition: all 0.2s ease;
    background-color: #f8fafc !important;
    box-shadow: none !important;
}

.Input__formInput:focus, 
.DropDown__dropdown:focus-within {
    border-color: #00aeef !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1) !important;
}

/* Description Editor */
.formEditor {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    overflow: hidden;
}

/* Attachment Section */
.FileUpload__label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f1f5f9;
    border-radius: 6px;
    transition: background 0.2s;
}

.FileUpload__label:hover {
    background: #e2e8f0;
}

.FileUpload__userLink {
    font-weight: 500;
    color: #334155 !important;
    text-decoration: none !important;
}

/* Captcha Area Styling */
.HCNewCaptcha__captchaBox {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    background: #f8fafc;
}

.HCNewCaptcha__captchaButton {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 6px !important;
    padding: 6px 12px !important;
    margin-right: 8px;
    font-size: 12px;
    text-transform: uppercase;
}

.HCNewCaptcha__captchaButtonActive {
    border-color: #00aeef !important;
    color: #00aeef !important;
}

/* Popular Articles Sidebar */
.Layout__layout2 {
    padding-left: 40px;
}

.PopularArticles__title {
    font-weight: 600;
    margin-bottom: 16px;
}

.PopularArticles__link {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-bottom: 12px;
}

.PopularArticles__link:hover {
    color: #3b82f6;
}

























/* 1. Reset the Row Container */
.KbCategoryContainer__row {
    display: flex !important;
    flex-wrap: wrap !important; /* Allows cards to drop to next line on mobile */
    justify-content: center !important;
    gap: 25px !important;
    padding: 0px 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* 2. Fix the Card Box */
.KbCategory__box {
    flex: 1 1 280px !important; /* Prevents the 'skinny' look, sets a base width */
    max-width: 320px !important;
    min-width: 250px !important;
    background: #ffffff !important;
    border: 1px solid #eef2f6 !important;
    border-radius: 16px !important;
    padding: 30px 20px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02) !important;
    display: block !important;
}

.KbCategory__boxInner {
    width: 100% !important;
}

/* 4. Fix the Typography (No more vertical stacking) */
.KbCategory__topic a {
    display: block !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    text-decoration: none !important;
    margin: 15px 0 10px 0 !important;
    white-space: normal !important; /* CRITICAL: Allows natural word wrapping */
    line-height: 1.4 !important;
}

.KbCategory__topicContent {
    font-size: 14px !important;
    color: #6b7280 !important;
    line-height: 1.6 !important;
    white-space: normal !important;
    margin: 0 !important;
}

/* 5. Icon/Avatar Sizing */
.Avatar__avatar {
    width: 60px !important;
    height: 60px !important;
    margin: 0 auto !important;
}

/* 6. Professional Hover Effect */
.KbCategory__box:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
    border-color: #00aeef !important;
}
























/* ============================= */
/* REMOVE NAVBAR BACKGROUND */
/* ============================= */
.Header__navbar {
    background: transparent !important;
    box-shadow: none !important;
}


/* ============================= */
/* BASE TAB STYLE (NO COLOR CHANGE) */
/* ============================= */
.Header__menuList .Header__tabsTab a {
    position: relative;
    text-decoration: none;
    background: transparent !important;
}

/* ============================= */
/* UNDERLINE EFFECT (HOVER + ACTIVE) */
/* ============================= */
.Header__menuList .Header__tabsTab a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: currentColor; /* keeps original text color */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease-in-out;
}

/* Hover effect */
.Header__menuList .Header__tabsTab a:hover::after {
    transform: scaleX(1);
}

/* Active tab underline (Zoho uses Header__active on LI) */
.Header__tabsTab.Header__active a::after {
    transform: scaleX(1);
}

/* ============================= */
/* OPTIONAL: REMOVE ANY HEADER BACKDROP */
/* ============================= */
.Header__navbar,
.Header__container {
    border: none !important;
    backdrop-filter: none !important;
}



/* SEARCH BAR */


/* 1. Main Search Container (The Pill Shape) */
.SearchContainer__globalSearch {
    align-items: center !important;
    background-color: #ffffff !important;
    border: 1px solid #00aeef !important; /* Brand Orange */
    border-radius: 50px !important;
    padding: 2px 2px 2px 20px !important; /* Space for text on left, tight on right for button */
    max-width: 600px !important;
    margin: 0 auto !important;
    height: 48px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
    position: relative !important; /* Essential for dropdown positioning */
    transition: box-shadow 0.3s ease !important;
}

.SearchContainer__globalSearch:focus-within {
    box-shadow: 0 4px 20px rgba(0, 174, 239, 0.15) !important;
}

/* 2. Input Field Area */
.SearchContainer__formGroup {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
}

.Input__headerSearch {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    font-size: 15px !important;
    color: #333333 !important;
    width: 100% !important;
    font-family: inherit !important;
}

.Input__headerSearch::placeholder {
    color: #999 !important;
}

/* 3. Filter Dropdown Trigger (Center section) */
.SearchContainer__moduleChangePopup {
    display: flex !important;
    align-items: center !important;
    padding: 0 15px !important;
    border-left: 1px solid #eeeeee !important;
    height: 24px !important; /* Vertical separator line height */
    cursor: pointer !important;
    white-space: nowrap !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #666666 !important;
    position: relative !important;
}

.SearchContainer__moduleChangePopup:hover {
    color: #00aeef !important;
}

/* Fix for the Dropdown Arrow Icon */
.SearchContainer__downArrow {
    display: inline-block !important;
    margin-left: 8px !important;
    width: 0 !important; 
    height: 0 !important; 
    border-left: 5px solid transparent !important;
    border-right: 5px solid transparent !important;
    border-top: 5px solid #666 !important; /* Creates a clean triangle */
    vertical-align: middle !important;
}

/* 4. The Circular Search Button (Right section) */
.SearchContainer__searchIcon {
    background-color: #00aeef !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    border-radius: 50% !important; /* Perfect circle */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
    margin-left: 5px !important;
}

.SearchContainer__searchIcon:hover {
    background-color: #0095cc !important;
}

.SearchContainer__searchIcon svg {
    width: 18px !important;
    height: 18px !important;
    fill: #ffffff !important;
}

/* 5. The Search Filter Popup Menu */
.SearchContainer__searchFilter {
    position: absolute !important;
    top: calc(100% + 10px) !important; /* Floats 10px below the bar */
    right: 50px !important; /* Aligns roughly under the filter text */
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    border: 1px solid #eeeeee !important;
    min-width: 180px !important;
    z-index: 1001 !important;
    padding: 8px 0 !important;
    list-style: none !important;
    margin: 0 !important;
    overflow: hidden !important;
}

/* Individual list items in dropdown */
.SearchContainer__searchModule {
    padding: 10px 20px !important;
    font-size: 14px !important;
    color: #444444 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.SearchContainer__searchModule:hover {
    background-color: #e6f7fd !important; /* Soft orange background */
    color: #00aeef !important;
}

/* Current selection in dropdown */
.SearchContainer__selected {
    background-color: #e6f7fd !important;
    color: #00aeef !important;
    font-weight: 600 !important;
}

/* Common resets for the parent components */
.commonStyle__borderNone { border: none !important; }
.commonStyle__outlineNone { outline: none !important; }



/* Target the orange search button */
.SearchContainer__searchIcon {
  display: inline-flex !important;    /* Use flexbox for perfect centering */
  align-items: center !important;     /* Vertical center */
  justify-content: center !important;  /* Horizontal center */
  background-color: #00aeef !important;
  width: 44px !important;              /* Matches the circle height */
  height: 44px !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  padding: 0 !important;               /* Remove any padding that shifts the icon */
  margin: 0 !important;
  transition: background-color 0.2s ease !important;
}

/* Target the magnifying glass SVG inside */
.SearchContainer__searchIcon svg {
  width: 20px !important;             /* Increased size for better visibility */
  height: 20px !important;
  fill: #ffffff !important;           /* Pure white icon */
  margin: 0 !important;               /* Remove any system margins */
  position: static !important;        /* Remove relative positioning that causes shifts */
}

/* Subtle hover effect */
.SearchContainer__searchIcon:hover {
  background-color: #0095cc !important;
}


/* 1. The Trigger Container (Where the arrow lives) */
.SearchContainer__moduleChangePopup {
  display: flex !important;
  align-items: center !important;
  padding: 0 15px !important;
  border-left: 1px solid #eeeeee !important;
  cursor: pointer !important;
  position: relative !important; /* Context for the absolute dropdown */
  height: 24px !important;
}

/* 2. Fix the Arrow Icon (Triangle look) */
.SearchContainer__downArrow {
  display: inline-block !important;
  width: 0 !important;
  height: 0 !important;
  border-left: 5px solid transparent !important;
  border-right: 5px solid transparent !important;
  border-top: 5px solid #666666 !important;
  margin-left: 8px !important;
  vertical-align: middle !important;
}

/* 3. The Dropdown Menu (The Floating Box) */
.SearchContainer__searchFilter {
  position: absolute !important;
  top: 45px !important;      /* Moves it exactly below the bar */
  left: 50% !important;
  transform: translateX(-50%) !important; /* Centers it under the arrow */
  background-color: #ffffff !important;
  border-radius: 10px !important;
  border: 1px solid #eeeeee !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
  min-width: 180px !important;
  padding: 8px 0 !important;
  list-style: none !important;
  z-index: 9999 !important;
  overflow: hidden !important;
}

/* 4. Individual Menu Items */
.SearchContainer__searchModule {
  padding: 12px 20px !important;
  font-size: 14px !important;
  color: #333333 !important;
  text-align: left !important;
  transition: all 0.2s ease !important;
  display: block !important;
}

/* Hover Effect */
.SearchContainer__searchModule:hover {
  background-color: #e6f7fd !important; /* Soft brand orange tint */
  color: #00aeef !important;
}

/* Selected State (The active one) */
.SearchContainer__selected {
  background-color: #e6f7fd !important;
  color: #00aeef !important;
  font-weight: 600 !important;
}

/* Remove any system bullets */
.commonStyle__listStyleNone { list-style: none !important; }

.Header__globalSearchAlt
 {
    border: none !important;
 }







































.Header__name {
    display: none !important;
}






/* HOME PAGE BODY */


/* Base Container Setup */
#layoutContainer {
    max-width: 1100px !important;
    margin: 0px auto !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    color: #333 !important;
}

/* 1. Top Section: Knowledge Base, Community, Tickets */
/* These are the modules at the top. We turn them into modern cards. */
.ContentBox__boxThree {
    display: inline-block !important;
    width: 31% !important;
    margin: 1% !important;
    background: #ffffff !important;
    border: 1px solid #eef2f6 !important;
    border-radius: 12px !important;
    padding: 40px 20px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02) !important;
}

.ContentBox__boxThree:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 24px rgba(0,0,0,0.06) !important;
    border-color: #00aeef !important; /* Your brand orange */
}

/* Icon Styling */
.Icon__Xlarge {
    width: 48px !important;
    height: 48px !important;
    margin-bottom: 20px !important;
    fill: #555 !important; /* Professional grey */
}

/* Header Text in Cards */
.ContentBox__headerMid a {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    text-decoration: none !important;
    margin-bottom: 10px !important;
    display: block !important;
}

.ContentBox__boxInnerHome p {
    font-size: 14px !important;
    color: #666 !important;
    line-height: 1.6 !important;
}

/* 2. List Sections: Recent Topics & Popular Articles */
.WidgetContainer__contentList {
    margin-top: 50px !important;
    list-style: none !important;
}

/* Titles (Recent Topics / Popular Articles) */
.ListHeader__header2 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    border-bottom: 2px solid #00aeef !important;
    display: inline-block !important;
    padding-bottom: 8px !important;
    margin-bottom: 25px !important;
}

.ListHeader__listIcon {
    width: 24px !important;
    height: 24px !important;
    margin-right: 10px !important;
}

/* 3. Article & Topic List Items */
.TopicListWidget__topicList, .ContentList__topicList {
    display: flex !important;
    align-items: center !important;
    padding: 12px 15px !important;
    margin-bottom: 8px !important;
    background: #fdfdfd !important;
    border-radius: 8px !important;
    transition: background 0.2s ease !important;
    border: 1px solid transparent !important;
}

.TopicListWidget__topicList:hover, .ContentList__topicList:hover {
    background: #f8fafc !important;
    border-color: #e2e8f0 !important;
}

/* Link Styling in Lists */
.TopicListWidget__listLink, .ContentList__listLink {
    text-decoration: none !important;
    color: #4a5568 !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    margin-left: 10px !important;
}

.TopicListWidget__listLink:hover, .ContentList__listLink:hover {
    color: #00aeef !important;
}

/* List Icons (The Document Icons) */
.TopicListWidget__topicList_Icon, .ContentList__listIcon {
    width: 18px !important;
    height: 18px !important;
    fill: #cbd5e0 !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .ContentBox__boxThree {
        width: 100% !important;
        margin: 10px 0 !important;
    }
}




/* SUBMIT TICKET */


/* 1. Main Background Section */
.Footer__footerBg {
    background-color: #f9fafb !important; /* Very soft grey to separate from white content */
    padding: 40px 20px !important;
    border-top: 1px solid #eeeeee !important;
}

.Footer__container1 {
    max-width: 800px !important;
    margin: 0 auto !important;
}

/* 2. Flex Layout for Info and Button */
.Footer__footerInfo {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-align: left !important; /* Aligns text left on desktop for better balance */
}

/* 3. Text Styling */
.Footer__footerQus {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    display: block !important;
    margin-bottom: 8px !important;
    font-family: 'Segoe UI', Roboto, sans-serif !important;
}

.Footer__footerDescription {
    font-size: 16px !important;
    color: #666666 !important;
}

/* 4. The "Submit a Ticket" Button */
.Button__footerBtn {
    background-color: #00aeef !important; 
    color: #ffffff !important;
    padding: 14px 32px !important;
    border-radius: 50px !important; /* Matches your pill-shaped search bar */
    border: none !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 14px rgba(0, 174, 239, 0.25) !important;
    outline: none !important;
}

.Button__footerBtn:hover {
    background-color: #0095cc !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 174, 239, 0.35) !important;
}

/* 5. Mobile Responsiveness */
@media (max-width: 768px) {
    .Footer__footerInfo {
        flex-direction: column !important;
        text-align: center !important;
        gap: 30px !important;
    }
    
    .Footer__footerQus {
        font-size: 24px !important;
    }
}

/* SEARCH BAR */


/* 1. Main Search Container (The Pill Shape) */
.SearchContainer__globalSearch {
    display: flex !important;
    align-items: center !important;
    background-color: #ffffff !important;
    border: 1px solid #00aeef !important; /* Brand Orange */
    border-radius: 50px !important;
    padding: 2px 2px 2px 20px !important; /* Space for text on left, tight on right for button */
    max-width: 600px !important;
    margin: 0 auto !important;
    height: 48px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
    position: relative !important; /* Essential for dropdown positioning */
    transition: box-shadow 0.3s ease !important;
}

.SearchContainer__globalSearch:focus-within {
    box-shadow: 0 4px 20px rgba(0, 174, 239, 0.15) !important;
}

/* 2. Input Field Area */
.SearchContainer__formGroup {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
}

.Input__headerSearch {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    font-size: 15px !important;
    color: #333333 !important;
    width: 100% !important;
    font-family: inherit !important;
}

.Input__headerSearch::placeholder {
    color: #999 !important;
}

/* 3. Filter Dropdown Trigger (Center section) */
.SearchContainer__moduleChangePopup {
    display: flex !important;
    align-items: center !important;
    padding: 0 15px !important;
    border-left: 1px solid #eeeeee !important;
    height: 24px !important; /* Vertical separator line height */
    cursor: pointer !important;
    white-space: nowrap !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #666666 !important;
    position: relative !important;
}

.SearchContainer__moduleChangePopup:hover {
    color: #00aeef !important;
}

/* Fix for the Dropdown Arrow Icon */
.SearchContainer__downArrow {
    display: inline-block !important;
    margin-left: 8px !important;
    width: 0 !important; 
    height: 0 !important; 
    border-left: 5px solid transparent !important;
    border-right: 5px solid transparent !important;
    border-top: 5px solid #666 !important; /* Creates a clean triangle */
    vertical-align: middle !important;
}

/* 4. The Circular Search Button (Right section) */
.SearchContainer__searchIcon {
    background-color: #00aeef !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    border-radius: 50% !important; /* Perfect circle */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
    margin-left: 5px !important;
}

.SearchContainer__searchIcon:hover {
    background-color: #0095cc !important;
}

.SearchContainer__searchIcon svg {
    width: 18px !important;
    height: 18px !important;
    fill: #ffffff !important;
}

/* 5. The Search Filter Popup Menu */
.SearchContainer__searchFilter {
    position: absolute !important;
    top: calc(100% + 10px) !important; /* Floats 10px below the bar */
    right: 50px !important; /* Aligns roughly under the filter text */
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    border: 1px solid #eeeeee !important;
    min-width: 180px !important;
    z-index: 1001 !important;
    padding: 8px 0 !important;
    list-style: none !important;
    margin: 0 !important;
    overflow: hidden !important;
}

/* Individual list items in dropdown */
.SearchContainer__searchModule {
    padding: 10px 20px !important;
    font-size: 14px !important;
    color: #444444 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.SearchContainer__searchModule:hover {
    background-color: #e6f7fd !important; /* Soft orange background */
    color: #00aeef !important;
}

/* Current selection in dropdown */
.SearchContainer__selected {
    background-color: #e6f7fd !important;
    color: #00aeef !important;
    font-weight: 600 !important;
}

/* Common resets for the parent components */
.commonStyle__borderNone { border: none !important; }
.commonStyle__outlineNone { outline: none !important; }



/* Target the orange search button */
.SearchContainer__searchIcon {
  display: inline-flex !important;    /* Use flexbox for perfect centering */
  align-items: center !important;     /* Vertical center */
  justify-content: center !important;  /* Horizontal center */
  background-color: #00aeef !important;
  width: 44px !important;              /* Matches the circle height */
  height: 44px !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  padding: 0 !important;               /* Remove any padding that shifts the icon */
  margin: 0 !important;
  transition: background-color 0.2s ease !important;
}

/* Target the magnifying glass SVG inside */
.SearchContainer__searchIcon svg {
  width: 20px !important;             /* Increased size for better visibility */
  height: 20px !important;
  fill: #ffffff !important;           /* Pure white icon */
  margin: 0 !important;               /* Remove any system margins */
  position: static !important;        /* Remove relative positioning that causes shifts */
}

/* Subtle hover effect */
.SearchContainer__searchIcon:hover {
  background-color: #0095cc !important;
}


/* 1. The Trigger Container (Where the arrow lives) */
.SearchContainer__moduleChangePopup {
  display: flex !important;
  align-items: center !important;
  padding: 0 15px !important;
  border-left: 1px solid #eeeeee !important;
  cursor: pointer !important;
  position: relative !important; /* Context for the absolute dropdown */
  height: 24px !important;
}

/* 2. Fix the Arrow Icon (Triangle look) */
.SearchContainer__downArrow {
  display: inline-block !important;
  width: 0 !important;
  height: 0 !important;
  border-left: 5px solid transparent !important;
  border-right: 5px solid transparent !important;
  border-top: 5px solid #666666 !important;
  margin-left: 8px !important;
  vertical-align: middle !important;
}

/* 3. The Dropdown Menu (The Floating Box) */
.SearchContainer__searchFilter {
  position: absolute !important;
  top: 45px !important;      /* Moves it exactly below the bar */
  left: 50% !important;
  transform: translateX(-50%) !important; /* Centers it under the arrow */
  background-color: #ffffff !important;
  border-radius: 10px !important;
  border: 1px solid #eeeeee !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
  min-width: 180px !important;
  padding: 8px 0 !important;
  list-style: none !important;
  z-index: 9999 !important;
  overflow: hidden !important;
}

/* 4. Individual Menu Items */
.SearchContainer__searchModule {
  padding: 12px 20px !important;
  font-size: 14px !important;
  color: #333333 !important;
  text-align: left !important;
  transition: all 0.2s ease !important;
  display: block !important;
}

/* Hover Effect */
.SearchContainer__searchModule:hover {
  background-color: #e6f7fd !important; /* Soft brand orange tint */
  color: #00aeef !important;
}

/* Selected State (The active one) */
.SearchContainer__selected {
  background-color: #e6f7fd !important;
  color: #00aeef !important;
  font-weight: 600 !important;
}

/* Remove any system bullets */
.commonStyle__listStyleNone { list-style: none !important; }
































/*FOOTER */

.site-footer {
  background-color: #ffffff;
  padding: 60px 20px 30px;
  border-top: 1px solid #eeeeee;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #333333;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Top Section */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  transition: opacity 0.2s ease;
}

.social-links a:hover {
  opacity: 0.7;
}

.social-links img {
  height: 18px;
  width: auto;
}

/* Divider */
.footer-divider {
  border: 0;
  border-top: 1px solid #eeeeee;
  margin-bottom: 40px;
}

/* Body Section */
.footer-body {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #000;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #999999;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #00aeef; /* Using your brand orange for hover */
}

.address-col p {
  font-size: 14px;
  color: #999999;
  margin: 5px 0;
  line-height: 1.6;
}

.contact-info {
  margin-top: 15px !important;
  color: #999999 !important;
}

/* Bottom Section */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #f9f9f9;
  padding-top: 25px;
}

.footer-bottom p {
  font-size: 12px;
  color: #bbbbbb;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .footer-top, .footer-body {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .footer-logo {
    margin-bottom: 20px;
  }
  
  .footer-col {
    margin-bottom: 30px;
  }
}












.Header__name {
    display: none !important;
}






/* HOME PAGE BODY */


/* Base Container Setup */
#layoutContainer {
    max-width: 1100px !important;
    margin: 0px auto !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    color: #333 !important;
}

/* 1. Top Section: Knowledge Base, Community, Tickets */
/* These are the modules at the top. We turn them into modern cards. */
.ContentBox__boxThree {
    display: inline-block !important;
    width: 31% !important;
    margin: 1% !important;
    background: #ffffff !important;
    border: 1px solid #eef2f6 !important;
    border-radius: 12px !important;
    padding: 40px 20px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02) !important;
}

.ContentBox__boxThree:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 24px rgba(0,0,0,0.06) !important;
    border-color: #00aeef !important; /* Your brand orange */
}

/* Icon Styling */
.Icon__Xlarge {
    width: 70px !important;
    height: 70px !important;
    margin-bottom: 20px !important;
    fill: #555 !important; /* Professional grey */
}

/* Header Text in Cards */
.ContentBox__headerMid a {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    text-decoration: none !important;
    margin-bottom: 10px !important;
    display: block !important;
}

.ContentBox__boxInnerHome p {
    font-size: 14px !important;
    color: #666 !important;
    line-height: 1.6 !important;
}

/* 2. List Sections: Recent Topics & Popular Articles */
.WidgetContainer__contentList {
    margin-top: 50px !important;
    list-style: none !important;
}

/* Titles (Recent Topics / Popular Articles) */
.ListHeader__header2 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    border-bottom: 2px solid #00aeef !important;
    display: inline-block !important;
    padding-bottom: 8px !important;
    margin-bottom: 25px !important;
}

.ListHeader__listIcon {
    width: 24px !important;
    height: 24px !important;
    margin-right: 10px !important;
}

/* 3. Article & Topic List Items */
.TopicListWidget__topicList, .ContentList__topicList {
    display: flex !important;
    align-items: center !important;
    padding: 12px 15px !important;
    margin-bottom: 8px !important;
    background: #fdfdfd !important;
    border-radius: 8px !important;
    transition: background 0.2s ease !important;
    border: 1px solid transparent !important;
}

.TopicListWidget__topicList:hover, .ContentList__topicList:hover {
    background: #f8fafc !important;
    border-color: #e2e8f0 !important;
}

/* Link Styling in Lists */
.TopicListWidget__listLink, .ContentList__listLink {
    text-decoration: none !important;
    color: #4a5568 !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    margin-left: 10px !important;
}

.TopicListWidget__listLink:hover, .ContentList__listLink:hover {
    color: #00aeef !important;
}

/* List Icons (The Document Icons) */
.TopicListWidget__topicList_Icon, .ContentList__listIcon {
    width: 18px !important;
    height: 18px !important;
    fill: #cbd5e0 !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .ContentBox__boxThree {
        width: 100% !important;
        margin: 10px 0 !important;
    }
}




/* SUBMIT TICKET */


/* UPDATED SUBMIT TICKET SECTION */

/* 1. Main Background Section */
.Footer__footerBg {
    background-color: #f9fafb !important;
    padding: 40px 20px !important;
    border-top: 1px solid #eeeeee !important;
}

.Footer__container1 {
    max-width: 800px !important;
    margin: 0 auto !important;
}

/* 2. Flex Layout for Info and Button */
.Footer__footerInfo {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-align: left !important;
}

/* 3. Text Styling */
.Footer__footerQus {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    display: block !important;
    margin-bottom: 8px !important;
    font-family: 'Segoe UI', Roboto, sans-serif !important;
}

.Footer__footerDescription {
    font-size: 16px !important;
    color: #666666 !important;
}

/* 4. UPDATED: Minimalist "Ghost" Button Style */
.Button__footerBtn {
    background-color: transparent !important;
    background: transparent !important;
    color: #00aeef !important;
    border: 1px solid #00aeef !important;
    padding: 12px 32px !important;
    border-radius: 50px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    /* Removed heavy shadow for a cleaner look */
    box-shadow: none !important; 
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Hover Effect: Fills in the button */
.Button__footerBtn:hover {
    background-color: #00aeef !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(0, 174, 239, 0.2) !important;
}

/* 5. Mobile Responsiveness */
@media (max-width: 768px) {
    .Footer__footerInfo {
        flex-direction: column !important;
        text-align: center !important;
        gap: 30px !important;
    }
    
    .Footer__footerQus {
        font-size: 24px !important;
    }
}



/*DAY 2 */










/* 1. PARENT WRAPPER WIDTH - Limits the maximum expansion of the portal content */
#mainContainer, 
#layoutContainer, 
.Layout__oneColumn, 
.Layout__layout1,
.UserContainer__innerContainer {
    max-width: 1200px !important; /* Increased width, break the default limit */
    width: 98% !important; /* Allow breathing room */
    margin-left: auto !important;
    margin-right: auto !important;
}

/* 2. THE MAIN BOX LAYOUT - This is the rounded white and image container */
.UserContainer__logInMainContainer {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    max-width: 100% !important; /* Fills the space allowed above */
    background: #ffffff !important;
    border-radius: 40px !important;
    overflow: hidden !important;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1) !important;
    align-items: stretch !important; /* Fixes height issues */
}

/* 3. LEFT SIDE: THE FORM (Preserved width and padding) */
.UserContainer__innerContainer1 {
    flex: 0 0 450px !important; /* Keeps form at a fixed 450px width */
    display: flex !important;
    flex-direction: column !important;
    background: #fff !important;
}

/* 4. RIGHT SIDE: THE IMAGE (WIDER - fills all remaining space) */
.UserContainer__innerContainer2 {
    flex: 1 !important; /* Takes all remaining space after the form */
    background-image: url("https://previewengine-accl.zohoexternal.com/image/WD/kmriw4cf9fb2ba32e49d98f2d493d7bdc6b7e?version=1.0&width=2046&height=1536") !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-radius: 50px 50px 50px 50px !important; /* Rounds only the right side */
    margin: 20px 20px 20px 0 !important; /* Creates the white space above and below the image */
}

/* Hide the raw content inside the image container */
.UserContainer__innerContainer2 > div {
    display: none !important;
}

/* 5. ARRANGE ELEMENTS TO MATCH YOUR IMAGE (Pushes links down) */
/* The layout in your image has space above the links, not below the button. */
.UserContainer__innerContainer1 > div:last-child {
    margin-top: auto !important; /* Crucial: Pushes links to the bottom */
}

/* 6. BOTTOM LINKS STYLING (Preserved structure) */
.Signin__loginHalf {
    display: inline-block !important; /* Keep them horizontal */
    margin-top: 40px !important; /* Space above links, matching image */
    margin-right: 25px !important;
    background: transparent !important;
}

.Signin__loginUserIcon,
.Signin__userDesc {
    display: none !important; /* Minimalist style like image */
}

.Signin__userHeader {
    font-size: 14px !important;
    color: #71717a !important;
    display: block !important;
}

.Signin__userLink {
    color: #00aeef !important;
    font-weight: 700 !important;
    text-decoration: underline !important;
    cursor: pointer !important;
}

/* 7. PILL INPUTS & BUTTONS (Preserved) */
.Input__formInput, .Input__captcha {
    background-color: #f4f7f9 !important;
    border-radius: 50px !important;
    padding: 14px 22px !important;
    height: 50px !important;
    border: 1px solid transparent !important;
    width: 100% !important;
}

button[data-id="signup_save"] {
    background-color: #ffffff !important;
    border-radius: 50px !important;
    height: 54px !important;
    width: 100% !important;
    font-weight: 700 !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 5px 10px rgba(0, 174, 239, 0.25) !important;
    color: #00aeef !important;
    border: 1px solid #00aeef !important;
    
}
button[data-id="signup_save"]:hover {
    background-color: #00aeef !important;
    color: #ffffff !important;
}


button[data-id="signup_cancel"] {
    background: transparent !important;
    color: #a1a1aa !important;
    width: 100% !important;
    border: none !important;
    margin-top: 10px !important;
    cursor: pointer !important;
}

button[data-id="signup_cancel"]:hover {
    background-color: #00aeef !important;
    color: #ffffff !important;
}

/* 8. RESPONSIVE FIX (Stack vertically on mobile) */
@media (max-width: 900px) {
    .UserContainer__logInMainContainer {
        flex-direction: column !important;
    }
    .UserContainer__innerContainer2 {
        display: none !important;
    }
    .UserContainer__innerContainer1 {
        width: 100% !important;
        min-width: 100% !important;
        padding: 40px 20px !important;
    }
}







.Captcha__captcha {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 0px solid var(--color-border) !important;
    border-radius: 3px;
}

.Captcha__captchaText {
    border-right: 0px solid var(--color-border) !important;
    padding: .625rem;
    width: 40%;
}


/* 2. ADJUSTED LINKS POSITION (Bottom Red Rectangle Area) */
.UserContainer__innerContainer2 > div {
    display: block !important; 
    position: absolute !important;
    /* Adjust this value to move it lower or higher inside the white space */
    bottom: -30px !important; 
    left: 40px !important;   
    width: 100% !important; 
    z-index: 99 !important;
    pointer-events: auto !important;
}

/* 3. Style the Link Blocks side-by-side */
.Signin__loginHalf {
    display: inline-flex !important;
    align-items: center !important;
    margin-right: 40px !important; /* Space between the two link groups */
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
}

/* 4. Ensure the Discard button doesn't touch the links */
.Signin__submitForm {
    /* This creates the necessary white space above the red rectangle area */
    margin-bottom: 70px !important; 
}

/* Extra cleanup for the links */
.Signin__userHeader {
    font-size: 13px !important;
    color: #64748b !important;
    white-space: nowrap !important;
}

.Signin__userLink {
    color: #00aeef !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    margin-left: 5px !important;
}












/* NAV MENU - DEFAULT, HOVER, ACTIVE */

/* --- Header Menu List --- */

/* Default state */
.Header__menuList .Header__tabsTab a {
    color: #ffffff !important; 
    transition: color 0.2s ease !important;
    position: relative; /* Required for the underline position */
}

/* Hover state */
.Header__menuList .Header__tabsTab a:hover {
    color: #00AEEF !important;
}

/* Active state */
.Header__menuList .Header__tabsTab.Header__active a {
    color: #00AEEF !important;
}

/* Underline logic */
.Header__menuList .Header__tabsTab a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00AEEF !important;
    transition: width 0.3s ease;
}

.Header__menuList .Header__tabsTab.Header__active a::after,
.Header__menuList .Header__tabsTab a:hover::after {
    width: 100%;
}


/* --- Login Detail Tabs (Sign In / Sign Up) --- */

/* Default state */
.LoginDetail__tabLink {
    color: #ffffff !important;
    padding: 0 10px;
    text-decoration: none;
    position: relative; /* Required for the underline position */
    transition: color 0.2s ease !important;
}

/* Hover state */
.LoginDetail__tabLink:hover {
    color: #00AEEF !important;
    text-decoration: none;
}

/* Active state (Sign In or Sign Up active) */
.LoginDetail__active .LoginDetail__tabLink {
    color: #00AEEF !important;
}

/* Underline for LoginDetail */
.LoginDetail__tabLink::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 10px; /* Matching the padding */
    right: 10px; /* Matching the padding */
    height: 2px;
    background: #00AEEF !important;
    width: 0;
    transition: width 0.3s ease;
}

/* Show underline on hover or when active */
.LoginDetail__active .LoginDetail__tabLink::after,
.LoginDetail__tabLink:hover::after {
    width: calc(100% - 20px); /* Adjusts for the 10px left/right padding */
}




.Icon__size25:hover {
    height: 1.5625rem;
    width: 1.5625rem;
 color: #00AEEF !important;
}
.Icon__size25 {
    height: 1.5625rem;
    width: 1.5625rem;
 color: #ffffff !important;
}


.Icon__brand {
    color: #00aeef  !important;
}






.commonStyle__zt3BrandBg {
    background-color: #00AEEF !important;
}

.commonStyle__zt3BrandBg:hover {
    background-color: #5cb0ce !important;
}


#nextbtn.btn {
    margin-bottom: 1.875rem;
    background-color: #00AEEF !important;
}








/* 3. CLEANING THE LOGIN BOX (Left Side) */
.UserContainer__innerContainer1 {
    padding: 40px !important;
    background: #ffffff !important;
}

.Signin__loginTitle {
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    margin-bottom: 12px !important;
}







.ErrorPage__errorTitle {
    color: #00AEEF !important;
    font-size: var(--size-base23);
    font-weight: 400;
    margin: 1.5rem 0 0;
}







/* Targeted CSS to replace the Thank You icon */
svg.Icon__xLarge[alt="Error page icon"] {
    display: block !important;
    background-image: url('https://previewengine-accl.zohoexternal.com/image/WD/3ukyj95832c2475c64626a3bac169ea0b12e1?version=1.0&width=2046&height=1536') !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    background-color: transparent !important;
    
    /* Ensure the target is wide enough to show the full plane and smile */
    width: 250px !important;
    height: 150px !important;
    
    /* Adjust margins for centering if necessary, based on page context */
    margin: 0 auto !important;
    padding: 0 !important;
}

/* Hide the old internal SVG paths completely */
svg.Icon__xLarge[alt="Error page icon"] use {
    display: none !important;
}

/* Ensure parents don't clip the new, wider icon */
svg.Icon__xLarge[alt="Error page icon"] * {
    max-width: none !important;
    max-height: none !important;
}




/* 1. Target the SVG container using the specific size class */
svg.Icon__size45 {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
}

/* 2. Target the internal 'use' tag specifically to ensure the image path is killed */
svg.Icon__size45 use[xlink\:href="#changePsw"] {
    display: none !important;
}

/* 3. If it's wrapped in a parent container that Zoho uses for 'Change Password' */
.Signin__loginHalf svg.Icon__size45 {
    display: none !important;
}










/* --- NAME FIELD --- */

/* 1. Hide the original "Name" text */
#name::placeholder {
    color: transparent !important;
}

/* 2. Overlay "Enter Your Full Name" */
#name:placeholder-shown {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='20'><text x='0' y='15' fill='gray' font-family='sans-serif' font-size='14'>Enter Your Full Name</text></svg>") !important;
    background-repeat: no-repeat !important;
    background-position: 20px center !important; 
}

/* 3. Remove overlay when user clicks to type */
#name:focus {
    background-image: none !important;
}


/* --- EMAIL FIELD --- */

/* 1. Hide the original "Email" text */
#email::placeholder {
    color: transparent !important;
}

/* 2. Overlay "Enter Your Email" */
#email:placeholder-shown {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='20'><text x='0' y='15' fill='gray' font-family='sans-serif' font-size='14'>Enter Your Email</text></svg>") !important;
    background-repeat: no-repeat !important;
    background-position: 20px center !important;
}

/* 3. Remove overlay when user clicks to type */
#email:focus {
    background-image: none !important;
}






/* 1. Hide the original long text */
#captchaText::placeholder {
    color: transparent !important;
    font-size: 20px !important; /* Makes the native hidden text small too */
}

/* 2. Overlay the "Small" custom text */
#captchaText:placeholder-shown {
    /* Note: font-size='11' inside the SVG makes the text smaller */
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='20'><text x='0' y='14' fill='gray' font-family='sans-serif' font-size='11'>Captcha</text></svg>") !important;
    background-repeat: no-repeat !important;
    background-position: 15px center !important; 
}

/* 3. Clean up on focus */
#captchaText:focus {
    background-image: none !important;
}v








.AvatarText__large {
    font-size: var(--size-base29);
    height: 6.25rem;
    line-height: 6.25rem;
    width: 6.25rem;
    background: #f8fdff !important;
    border: 1px solid #00aeef !important;
}




.AvatarText__avatarText {
    background: #f8fdff !important;
    border: 1px solid #00aeef !important;
}

.commonStyle__zt3Brand {
    color: #00aeef !important; 
}


.ProfileTabs__activeTab {
    color: #00aeef !important;
}
.FilterTabs__activeFilter {
    color: #00aeef !important;
}


.AvatarText__squareBg1 {
    background: #f8fdff !important;
    border: 1px solid #00aeef !important;
    border-radius: 10% !important;
}









@media (min-width: 769px) {
    .Layout__twoColumnReverse .Layout__layout2
 {
        width: 150.666667%  !important; /* 2/3 of the space */
    }
}


.MultiSelect__suggestionFocus
 {
    color: #00aeef;
}








.commonStyle__zt3Link:hover, .themeLink:hover, .commonStyle__zt3LinkActive, .commonStyle__zt3bdrLine, .DepartmentList__forums
 {
    color: #00aeef  !important;
}







.NoContent__title {
    color: #00aeef !important;
    font-size: 1.333rem;
    font-weight: 600;
    margin: 1rem 0 0;
}


.Icon__hoverbrand:hover {
    color: #00aeef !important;
}





.commonStyle__zt3BrandBorder {
    border-color: #00aeef !important;
}

.CheckBox__inputCheckbox:checked + .CheckBox__checkbox {
    border-color: #00aeef !important; 
}

.DepartmentList__deptListItem:hover .DepartmentList__forums, .Radio__radio [type=radio]:checked+.Radio__radioLabel .Radio__radioFaux:after, .CheckBox__inputCheckbox:checked + .CheckBox__checkbox {
    background-color: #00aeef !important;
}




















/* 1. HIDE UNWANTED ELEMENTS (Icons and Descriptions) */
.ForgetPasswordContainer__loginUserIcon,
.ForgetPasswordContainer__userDesc {
    display: none !important;
}

/* 2. ARRANGE BLOCKS SIDE-BY-SIDE */
.ForgetPasswordContainer__newuser, 
.ForgetPasswordContainer__agentlogin {
    display: inline-flex !important; /* Forces them onto one line */
    align-items: center !important;
    margin-right: 40px !important;  /* Space between the two groups */
    margin-bottom: 50px !important;
    padding-bottom: 0 !important;
    border-bottom: none !important; /* Removes the separator lines */
    background: transparent !important;
    width: auto !important;
}

/* 3. STYLE THE TEXT (Simple and Clean) */
.ForgetPasswordContainer__userHeader {
    font-size: 13px !important;
    color: #64748b !important; /* Soft gray color */
    white-space: nowrap !important;
}

/* 4. STYLE THE LINKS (Cyan Blue) */
.ForgetPasswordContainer__userLink {
    color: #00aeef !important; /* Brand Cyan */
    font-weight: 700 !important;
    text-decoration: none !important;
    margin-left: 5px !important;
}

.ForgetPasswordContainer__userLink:hover {
    text-decoration: underline !important;
}

/* 5. PARENT CONTAINER TWEAK */
/* Ensures the outer div doesn't force a vertical stack */
.ForgetPasswordContainer__innerContainer2 > div {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    margin-top: 20px !important;
}










/* 1. Target the SVG icon container and hide the original graphic */
svg.Icon__veryLarge1[alt="Change password"] use {
    display: none !important; /* Hides the pen-and-lock SVG symbol */
}

/* 2. Target the parent SVG element and apply the new image as a background */
svg.Icon__veryLarge1[alt="Change password"] {
    display: inline-block !important; /* Ensure the element stays visible */
    
    /* ADD NEW SHIELD IMAGE */
    /* Update this path to where you host the image from image_3.png */
    background-image: url('https://previewengine-accl.zohoexternal.com/image/WD/h5d9j0114f19117424183b8ecaabd48e58c86?version=1.0&width=2046&height=1536') !important; 
    
    /* Formatting the background image */
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important; /* Scale to fit the container */
    
    /* Set dimensions to roughly match the "Icon__veryLarge1" size */
    width: 80px !important;  
    height: 120px !important; 
    
    /* Remove any background color from the SVG itself */
    background-color: transparent !important;
}







/* 1. Target the Knowledge Base SVG and hide the original Zoho icon paths */
svg.Icon__Xlarge[alt="Knowledge Base"] use {
    display: none !important;
}

/* 2. Apply your new custom icon as a background image */
svg.Icon__Xlarge[alt="Knowledge Base"] {
    background-image: url('https://previewengine-accl.zohoexternal.com/image/WD/h5d9j65060709cf7f4b45b5c0ae99b2739d31?version=1.0&width=2046&height=1536') !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    
    /* Ensure the container is sized correctly for the new icon */
    width: 70px !important;
    height: 70px !important;
    display: inline-block !important;
    
}

/* 3. Optional: Hover effect to match your cyan theme */
.KbCategory__box:hover svg.Icon__Xlarge[alt="Knowledge Base"] {
    opacity: 0.8;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* 1. Target the Community SVG and hide the original Zoho icon paths */
svg.Icon__Xlarge[alt="Community"] use {
    display: none !important;
}

/* 2. Apply the Aviation Community icon as a background */
svg.Icon__Xlarge[alt="Community"] {
    /* Using a direct Data URI for an aviation/people themed cyan icon (#00AEEF) */
    background-image: url('https://previewengine-accl.zohoexternal.com/image/WD/h5d9jf89273f8d753463282043c2ea8e0f211?version=1.0&width=2046&height=1536') !important;
    
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    
    /* Consistency with Knowledge Base sizing */
    width: 70px !important;
    height: 70px !important;
    display: inline-block !important;
}

/* 3. Ensure the hover effect remains consistent for both icons */
.KbCategory__box:hover svg.Icon__Xlarge[alt="Community"] {
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* 1. Target the Tickets SVG and hide the original Zoho icon paths */
svg.Icon__Xlarge[alt="Tickets"] use {
    display: none !important;
}

/* 2. Apply the Aviation Ticket icon as a background */
svg.Icon__Xlarge[alt="Tickets"] {
    /* Using a direct Data URI for a ticket/boarding pass icon in Cyan (#00AEEF) */
    background-image: url('https://previewengine-accl.zohoexternal.com/image/WD/h5d9j4fce78f61b4c43c28f3dbb0f77770d77?version=1.0&width=2046&height=1536') !important;
    
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    
    /* Consistency with Knowledge Base and Community sizing */
    width: 70px !important;
    height: 70px !important;
    display: inline-block !important;
}

/* 3. Consistency hover effect */
.KbCategory__box:hover svg.Icon__Xlarge[alt="Tickets"] {
    transform: scale(1.05);
    transition: all 0.3s ease;
}



.DateWidget__date:hover, .DateWidget__dateFocus {
    border-bottom: 1px solid #00aeef    !important;
}




.MultiSelect__mainBorder:hover, .MultiSelect__mainBorderFocus {
    border-bottom: 1px solid #00aeef !important;
 }











.Header__homeNavbarFixed .Header__menu, .Header__homeNavbarFixed .Header__menu:after, .Header__homeNavbarFixed .Header__menu:before
 {
    background-color: #ffffff !important; /* Your brand red */
}

.DateTime__today, .DateTime__today:hover
 {
    background: #00aeef !important;
    color: var(--color-white);
}

.DateTime__blueBut {
    background: #00aeef !important;
    border: 1px solid #00aeef !important;
}
.Signin__agentlogin {
    display: none !important;
}
input[data-id="searchInput"] {
    display: none !important;
}
.Footer__footerBg {
    display: none !important;
}
.ForgetPasswordContainer__loginUserDoc {
    display: none !important;
}







#breadCrumbsContainer .BreadCrumbs__breadCrumbsLink:hover {
    color: #00AEEF !important;
}

.SearchContainer__globalSearch{
    display: none !important;
}



.Icon__brand{
    display: none !important;
}





.Header__homeNavbarFixed .Header__navbar .Header__globalSearchAlt{
    display: none !important;
}


/* Today */
.DateTime__today {
    background-color: #00AEEF !important;
    color: #fff !important;
    border-color: #00AEEF !important;
}

/* Selected date */
.DateTime__selected,
.DateTime__selectedDate {
    background-color: #00AEEF !important;
    color: #fff !important;
    border-color: #00AEEF !important;
}

/* Date hover */
.DateTime__datesStr:hover {
    color: #00AEEF !important;
}

/* Previous/Next month & year arrows */
.DateTime__sideArows:hover {
    color: #00AEEF !important;
}

/* Month title (optional) */
.DateTime__monthStr {
    color: #00AEEF !important;
}

/* Set button */
.DateTime__blueBut {
    background-color: #00AEEF !important;
    border-color: #00AEEF !important;
    color: #fff !important;
}

/* Selected dropdown option (Hour, Minute, AM/PM) */
.DropdownComponent__bccolor {
    background-color: #00AEEF !important;
    color: #fff !important;
}

/* Dropdown option hover */
.DropdownComponent__option:hover {
    background-color: #00AEEF !important;
    color: #fff !important;
}



.DropdownComponent__listview {
    border: 1px solid #00AEEF !important;
    box-shadow: 0 0 3px #2991b7 !important;
}
