/*
PINSTACK colors:
  --color:#C28553; dark brown
  --color1:#E0AB7F; 
  --color2: #F6E8C3;
  --color3: #F5F5F5; 
  --color4: #C7EAE5;
  --color5: #78C2BB; 
  --colors6: #02887E; dark green
/*

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
--background-color:#ffffff; /*   Background color for the entire website, including individual sections */
--default-color: #444444; /* Default color used for the majority of the text content across the entire website */
--heading-color: #02887E;  /*  #37517e * Color for headings, subheadings and title throughout the website */
--accent-color: #C28553 ; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
--surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
--contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}
/* dustry blue #6b92b5


/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
--nav-color: #ffffff;  /* The default color of the main navmenu links */
--nav-hover-color: #47b2e4 ; /* #47b2e4 Applied to main navmenu links when they are hovered over or active */
--nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
--nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
--nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
--nav-dropdown-hover-color: #47b2e4; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
--background-color: #f5f6f8;
--surface-color: #ffffff;
}

.dark-background {
  --background-color: #2e5985;
--default-color: #ffffff;
--heading-color: #ffffff;
--surface-color: #47b2e4 ;
--contrast-color: #ffffff;
}
/*love this turquios #046276 and this #026a81
/*love this blue  #2e5985
/*  --background-color:  #003e3f #6b92b5 #37517e;

/*--------------------------------------------------------------
# Global Header   /*--background-color: #06768d #3d4d6a;
--------------------------------------------------------------*/

.header {
  --background-color: #2e5985;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: rgba(40, 58, 90, 0.9);
}

#input_data{
  width:75%; 
  font-family: monospace;
  resize: vertical;
  overflow-y: auto;
  overflow-x: auto;
  white-space: pre;
  overflow: visible;
}


#projections{
  width: 25%;
  overflow-x: auto;
}

/* tooltip styling */
.info-icon {
  position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--heading-color);
    color: white;
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
  }
  
/* Tooltip text */
.info-icon:hover .tooltip {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.tooltip {
  position: absolute;
  bottom: 30px; /* Distance above the icon */
  width: 300px;
  left: 50%;
  max-height: 300px;
  transform: translateX(-50%) translateY(10px); /* Center the tooltip */
  padding: 8px 12px;
  background-color: #333;
  color: #fff;
  border-radius: 5px;
  font-size: 12px;
  white-space: normal; /* Preserve line breaks */
  word-wrap: break-word; /* Break long words */
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 100;
  overflow: visible;
}

/* Tooltip arrow */
.tooltip::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

/* end of tooltip styling */