/* Color Palette */
/* color1: #B34374 */
/* color2: #D4BE6E */
/* color3: #558395 */
/* white color: #FFFFFF */
/* dark color:  #312B15*/

/* pseudoclass */
:root {
    --primary_color_darker: #993030;
    --primary_color: #b63b3b;
    --secondary_color: #27567b;
    --tertiary_color: #f9c414;
    --background_color: #f7ebd8;
    --dark_color: #505050;
    --white_color: #f8f9fa;

}
a {
    text-decoration: none !important;
}
div.test {
    background-color: #33b5e5;
    border: 2px solid #000000;
}

/* .btn-primary, .btn-primary:hover, .btn-primary:active, .btn-primary:visited {
    background-color: var(--primary_color) !important;
    border-color: var(--primary_color) !important;
} */
.btn-primary {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--primary_color);
    --bs-btn-border-color: var(--primary_color);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--primary_color_darker);
    --bs-btn-hover-border-color: var(--primary_color_darker);
    --bs-btn-focus-shadow-rgb: var(--primary_color);
    --bs-btn-active-color: var(--bs-btn-hover-color);
    --bs-btn-active-bg: var(--primary_color_darker);
    --bs-btn-active-border-color: var(--primary_color_darker);
  }


.btn-secondary {
    background-color: var(--secondary_color);
    border-color: var(--secondary_color);
}
.btn-tertiary {
    background-color: var(--tertiary_color);
    border-color: var(--tertiary_color);
}

/* side bar */
#sidebar {
    background-color: var(--dark_color);
    width: 250px;
    left: -250px; /* initially hidden */
    transition: all 0.3s ease;
}
#sidebar label {
    color: var(--background_color);
}
#sidebar.active {
    left: 0; /* show sidebar */
    z-index: 10000;
}
#sidebar .session {
    background: var(--primary_color);
    color: var(--background_color);
    padding: 30px;
    display: block;
}
#sidebar a {
    color: var(--background_color);
    padding: 10px;
}


/* #sidebar .custom-menu{
    display: inline-block;
    position: absolute;
    top: 20px;
    right: 0;
    margin-right: -5px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: 1;
} */

#toggle-btn {
    width: 50px;
    position: absolute;
    /* top: 20px; */
    right: -40px;
    z-index: 1000; /* make sure it's on top */
    transition: right 0.3s ease;
    /* --bs-btn-hover-bg: var(--primary_color);
    --bs-btn-hover-border-color: var(--primary_color);
    --bs-btn-active-bg: var(--primary_color);
    --bs-btn-active-border-color: var(--primary_color); */
}
#sidebar.active #toggle-btn {
    right: 0px; 
}

#sidebar ul li a {
    display: block;
    border-bottom: 1px solid var(--background_color);
    
}

#sidebar .nav-link.active {
    background-color: var(--primary_color);
}

/* main content */
#main-content {
    margin-left: 0;
    transition: margin-left 0.3s ease;
    width: calc(100% - 10px);
    
}
#main-content.active {
    margin-left: 250px; /* adjust content to show side bar */
    width: calc(100% - 250px);
}
/* Grid */
.col_full {width: 100%;}

/* index.php */

#Home-Overview [class*=col]{
    padding: 1em;
}

#Home-Overview #description{
    font-size: 30px;
}
#Home-Overview .row{
    padding: 1rem;
}


/* runscing.php */
#scing-nav .nav-link{
    color: var(--dark_color);
}
#scing-nav .nav-link.active{
    color: var(--primary_color);
}

#overviewAccordion .accordion-button{
    background-color: var(--secondary_color);
    color:var(--background_color);
}


/* network_analysis.php */
div#Network-Analysis-Main-Btns{
    height: 10em
}
.main-toggle-button-box{
    width: 33%;
    height: 100%;
    font-size: x-large;
}
.button-inner{
    height: 100%;
    width: 100%;
    font-size: 1em;
    justify-content: center;
    align-items: center;
}
.auto-width-table {
    table-layout: auto; /* Adjusts column width based on content */
    width: 100%; /* Allows the table to take up full width */
}
.auto-width-table td, .auto-width-table th {
    white-space: nowrap; /* Prevent text from wrapping */
    padding: 8px 12px; /* Add some padding */
}


/* contact.php */
.instructions {
    text-align: center;
    color: #191919;
    /* font-family: Lato, sans-serif; */
    font-size: 20px;
}

h1 {
   text-align: center;
   margin-top: 20px;
   font-weight: 500;
 }
 
 /* .name .email .subject .message .file-upload {
   align-content: center;
   width: 100%;
   display: block;
 }

 .subject {
    margin-bottom: 25px;
 } */
 
label {
    font-family: Lato, sans-serif;
    line-height: 1.5;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    margin-bottom: 5px;
    cursor: pointer;
}
 .contact-form-div {
    align-items: center;
    justify-content: center;
    margin: 0px auto;
    width: 80%;
    max-width: 800px;
    padding: 30px 40px;
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}


.button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  outline: none;
  margin: 5px 0 15px 0;
  padding: 0 22px;
  font-size: 13px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  background-color: #DC461D;
  border: 1px solid #d14d26;
  box-shadow: inset 0 1px 0 #f15003, inset 0 -1px 0 #f35a2d, inset 0 0 0 1px #ac4d38, 0 2px 4px rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

#confirmation-container { 
    text-align: center; 
    justify-content: center;
    padding: 20px; 
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9; 
    border-radius: 10px;
    margin: auto;
    margin-top: 30px;
    max-width: 800px;
}

#confirmation-div {
    max-width: 700px; 
    margin: 30px auto;  
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

#confirmation-div p {    
    font-family: Lato, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #000000;
}

#confirmation-div span {
    font-family: 'Lato', sans-serif;
    font-weight: normal;
    color: #444;
}
 
#confirm-message {
    white-space: pre-wrap;  
    word-wrap: break-word;  
    margin-top: 10px; 
    display: block;
}

#address-container {
    margin: 25px auto;
    text-align: center;
}




 /* ----------------------------------------------------------------
  Tooltip styles
-----------------------------------------------------------------*/

[tooltip] {
    position:relative !important;
    
    }
    
    /* Applies to all tooltips */
    [tooltip]::before,
    [tooltip]::after {
    text-transform: none; /* opinion 2 */
    font-size: 0.7em; /* opinion 3 */
    line-height: 1;
    user-select: none;
    pointer-events: none;
    position: absolute !important;
    display: none;
    opacity: 0;
    z-index: 2000;
    }
    [tooltip]::before {
    content: '';
    border: 5px solid transparent; /* opinion 4 */
     z-index: 1001;/* absurdity 1 */
    }
    [tooltip]::after {
    content: attr(tooltip); /* magic! */
    
    /* most of the rest of this is opinion */
    
    
    /* 
      Let the content set the size of the tooltips 
      but this will also keep them from being obnoxious
      */
    min-width: 14em;
    max-width: 30em;
    min-height: 2em;
    max-height: 15em;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    padding: 1ch 1.5ch;
    border-radius: .3ch;
    box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
    background: #04114d;
    color: #fff;
    /* absurdity 2 */
    }
    
    /* Make the tooltips respond to hover */
    [tooltip]:hover::before,
    [tooltip]:hover::after {
    display: inline-block;
    }
    
    /* don't show empty tooltips */
    [tooltip='']::before,
    [tooltip='']::after {
    display: none !important;
    }
    
    /* FLOW: UP */
    [tooltip]:not([flow])::before,
    [tooltip][flow^="up"]::before {
    bottom: 100%;
    border-bottom-width: 0;
    border-top-color: #333;
    }
    [tooltip]:not([flow])::after,
    [tooltip][flow^="up"]::after {
    bottom: calc(100% + 5px);
    }
    [tooltip]:not([flow])::before,
    [tooltip]:not([flow])::after,
    [tooltip][flow^="up"]::before,
    [tooltip][flow^="up"]::after {
    left: 50%;
    transform: translate(-50%, -.5em);
    }
    
    
    
    
    /* KEYFRAMES */
    @keyframes tooltips-vert {
    to {
      opacity: .9;
      transform: translate(-50%, 0);
    }
    }
    
    @keyframes tooltips-horz {
    to {
      opacity: .9;
      transform: translate(0, -50%);
    }
    }
    
    
    /* FX All The Things */ 
    [tooltip]:not([flow]):hover::before,
    [tooltip]:not([flow]):hover::after,
    [tooltip][flow^="down"]:hover::before {
    animation: tooltips-vert 300ms ease-out forwards;
    }
    
    [tooltip][flow^="right"]:hover::before,
    [tooltip][flow^="right"]:hover::after {
      animation: tooltips-horz 300ms ease-out forwards;
    }