body, html {
  padding: 0px;
  margin: 0px;
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  overflow-x: hidden;
}
/* styles.css */
#document {
  /* font-family: "Nunito", sans-serif;
  //font-optical-sizing: auto;
  font-style: normal; */
  position: relative;
}

.form_holder {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

#picker {
    padding: 10px;
}

.user_logo {
    width: 200px;
}

.fade {
      transition: opacity 0.5s ease; /* Smooth transition for opacity */
      opacity: 0; /* Start hidden */
      display: none; /* Hide by default */
    }

    .visible {
      opacity: 1; /* Fully visible */
      display: flex; /* Ensure it's in the layout */
    }

.address {
    border: 0px;
  border-radius: 5px;
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 3px;
}

.button {
    cursor: pointer;
}

.button img {
    width: 30px;
}

.column-text {
    align-items: left;
    padding: 40px;
}

.column-image {
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 0px;
    padding-right: 0px;
    font-size: 30em;
}

.column-text-content {
  display: inline;
  font-size: 2em;
}

.column img, .column svg {
  width: 80%;
  align-items: center !important;
  justify-content: center;
  text-align: center;
}



.colour1 {
  background-color: #9baedf;
}

.colourPrimary {
  background-color: #304b94;
}

.headingBlock {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
}

.addButton {
  text-align: center;
  padding: 3px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 10px;
  float: left;
}

.addButton img {
    height: 30px;
}

.addButton svg {
    height: 30px;
}

/* popOver */

.popover-content {
  display: none; /* Hide the popover by default */
  position: absolute;
  background-color: white;
  border: 1px solid #ddd;
  padding: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.sectionToolbar {
    width: 100%;
    background-color: #232323;
    height: 100px;
    display: flex;
  justify-content: flex-end; /* Align items to the left */
  align-items: center; /* Align items vertically in the center (optional) */
  flex-wrap: nowrap; /* Allow items to wrap onto multiple lines (optional) */
  gap: 10px; /* Add space between the divs */
}

.toolbar-button {
     display: flex;
  justify-content: center; /* Horizontally center the content */
  align-items: center; /* Vertically center the content */
    width: 90px;
    height: 90px;
    cursor: pointer;
    border-radius: 5px;
    border: 0px;
}

.toolbar-button:nth-child(2) {
  margin-left: auto; /* Push all items starting from the second one to the right */
}

.toolbar-button:first-child {
    margin-left: 10px; /* Example margin for the first element */
}

.toolbar-button:last-child {
    margin-right: 10px; /* Example margin for the last element */
}

.toolbar-button img, .toolbar-button svg {
    width: 70%;    
}

/* Document list */

.documentList {
  display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px; /* Spacing between the grid items */
    padding: 16px; /* Optional padding around the grid */
    border-radius: 8px; /* Optional border radius for rounded corners */   
}

.documentList div {
    border: 1px solid #ddd; /* Border for each grid item */
    padding: 0px; /* Padding inside each grid item */
    border-radius: 4px; /* Optional border radius for grid items */
}

.image-container {
            width: 100%; /* Set the container to be 100% wide */
            height: 150px; /* Set the height to 100px to crop the image */
            margin-left: auto;
            margin-right: auto;
            overflow: hidden; /* Hide the overflow to crop the image */
            position: relative; /* Use relative positioning for absolute positioning of the image */
        }
        
        .image-container img {
            width: 100%; /* Make the image width 100% to fill the container */
            height: auto; /* Maintain aspect ratio */
            position: absolute; /* Position the image absolutely within the container */
            top: 0; /* Align the top of the image with the top of the container */
            left: 0; /* Align the left of the image with the left of the container */
        }

/* Navigation */

 .navbar {
            display: flex;
            justify-content: space-between; /* Space between logo and menu */
            align-items: center; /* Vertically center items */
            padding: 1em;
            background-color: #f8f9fa; /* Light grey background */
            margin: 0px !important;
        }

        .logo {
            /* Adjust the size and spacing of the logo as needed */
            max-height: 50px; /* Maximum height for the logo */
        }

        .menu {
            display: flex; /* Display menu items in a row */
            gap: 1em; /* Spacing between menu items */
            list-style: none; /* Remove list bullets */
            margin: 0; /* Remove default margin */
            padding: 0; /* Remove default padding */
        }

        .menu li a {
            text-decoration: none; /* Remove underline from links */
            color: #fff; /* Text color */
            font-weight: bold; /* Bold text */
            font-size: 1.4em;
        }
        
        
        /* Footer Styles */
.footer {
    background: #222;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.footer-logo h2 {
    margin: 0;
    font-size: 24px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #f4a261;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.footer-socials img:hover {
    transform: scale(1.2);
}

.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.7;
}

 /* Tab container */
        .tabs {
            display: flex;
        }

        /* Tab buttons */
        .tab {
            padding: 10px 20px;
            cursor: pointer;
            border: 1px solid #ddd;
            border-bottom: none;
            background: #f5f5f5;
            margin-right: 5px;
            border-radius: 5px 5px 0 0;
        }

        .tab.active {
            background: #fff;
            border-bottom: 2px solid white;
        }

        /* Content sections */
        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-socials {
        margin-top: 10px;
    }
}