:root {
  --primary: #0063a3;
  --bg: #f4f4f4;
  --text: #333;
  --space: 1rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: white;
  color: var(--text);
  background-image: url("https://staging.cloud.jobpac.com.au/_layouts/15/Jobpac/LoginPages/images/Jobpac.jpg?20220131");
}

a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space) 2rem;
  background: white;
  border-bottom: 1px solid #ddd;
  height: min-content;
}

.logo {
  height: 40px;
}

.nav a {
  margin-left: 1.5rem;
}

.main-content {
  padding: 20px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.row {
    width: auto;
    
}

.hero h1 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: white;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #0063a3;
}

.site-footer {
  padding: 1rem 2rem;
  background: #0E416C;
  text-align: center;
  font-size: 0.9rem;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 36px;
}

.chat-bot {
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
    height: 320px;
    margin-bottom: 5%;
}

#chat-toggle {
  position: fixed;
  bottom: 50px; /* Increased from 30px to 70px to move above the footer */
  right: 35px;
  width: 60px;
  height: 60px;
  
}

/* Popup Chat Window */
#chat-popup {
  position: fixed;
  bottom: 110px;
  right: 50px;
  width: 430px;
  height: 600px;
  display: none;
  /* border: 1px solid #ccc; */
  border-radius: 8px;
  overflow: hidden;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  
  border-color: transparent;
  color: white;
  border: 0px
}

#chat-popup iframe {
  width: 100%;
  height: 100%;
  display: block;
  /* border-color: whitesmoke;  */
  border-radius: 10px;
}

#chat-popup div {
  display: block;
}

.trimble_footer {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 1;
  border-bottom: 36px solid #FBAD26;
  margin-right: 180px;
  padding-bottom: 30px;
}



/*faq.html*/

.top-left-btn {
    background: transparent;
    border: 0;
    font-weight: bold;
    font-size: medium;
    cursor: pointer;
    position: absolute;
    left: 10px;
    top: 25%;
    
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 50px;
    background-color: inherit;
}

.info-section {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 16px;
    background-color: inherit;
    gap: 2px;
}


/* #banner {
    align-items: center;
    background-color:#0063a3;
    display: flex;
    justify-content: space-between;
    height: 40px;
}

#webchat {
    overflow: hidden;
    flex: 1;
    align-self: center;
    width: 100%;
}

#logo {
    height: 63%; 
    width: min-content;
    padding: 3px 0px 3px 10px;
    object-fit: cover;
    border-radius: 20%;
    background-color: #0062a385;
}

#left-section {
    display: flex;
    align-items: center;
    height: inherit;
}

.beta-tag {
    background-color: #f0b43c;
    color: #000;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.icon-button {
    background: transparent;
    border: none;
    color: white;
    font-weight: bolder;
    font-size: 16px;
    cursor: pointer;
}

#right-section {
    display: flex;
    gap: 12px;
    padding-right: 10px;
}

#chat-container {
    display: flex; 
    flex-direction: column; 
    height: calc(100% - 40px);
    width: 100%;
    position: fixed;
    justify-content: space-between;
} */