
/* main page layout  */

body {
  background-color: #ffffff;
  position:relative
  display: flex;
  justify-content: center;
  padding: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875em;

  }

body {
    font-family: 'Inter', sans-serif;
}



/* formatting for flexbox layouts  */

.containerFlexbox {
  background-color: gray;
}

.column {
  background-color: white;
  border: 5px solid white;
  padding: 2px;
}


/*  options pink fac1b3

/* Highlight panel */
/* Base styles for the highlight panel */
    .highlight-panel {
        background-color: #fdd393; /* Matches your 'Adult with mild head injury' card */
        color: #253568; /* Dark blue text for contrast */
        margin: 20px;
        padding: 10px;
        border-radius: 8px;
        border: 2px solid white;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        padding-bottom: 20px;
    }

    .highlight-panel h3 {
        margin-top: 0;
        margin-bottom: 5px;
        font-size: 1.2em;
        border-bottom: 1px solid #253568;
    }

    .highlight-panel p {
        margin: 0;
        line-height: 1.3em;
        position: relative;
        z-index: 2;
    }


    /* MOBILE SPECIFIC: Enforce the 25% screen height limit */
    @media (max-width: 480px) {
        .highlight-panel {
            max-height: 25vh; /* Limits height to 25% of the viewport */
            overflow-y: auto; /* Adds a scrollbar if the text gets too long */
            margin: 20px;      /* Reduces margin to save space */
        }
    }
/* end  of highlight panel */



/* formatting left column buttons */

/* Quick Navigation Buttons for Clinicians */
.quick-nav-container {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    padding-top: 10px;
    padding-left: 20px; padding-right: 20px;
    margin-top: 20px;
}

.quick-nav-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 5px;
    background-color: rgba(255, 255, 255, 0.1); /* Subtle transparent white */
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Hover/Active states for better feedback */
.quick-nav-btn:active, .quick-nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.quick-nav-btn .material-symbols-outlined {
    font-size: 28px; /* Optimized for quick recognition */
    margin-bottom: 5px;
}

.quick-nav-btn span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Ensure icons are filled for visual weight */
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}


/* end of formatting left column buttons */




/* formatting centre column  buttons */

button:hover {
  background-color: green;
}


/*  card view styling for I have a patient with...  */

.card {
  box-shadow: 0 8px 10px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  border-radius: 15px; /* 5px rounded corners */
  padding: 20px;
  margin:30px;
}


.card2 {
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  border-radius: 15px; /* 5px rounded corners */
  padding: 10px;
  margin: 10px;
}





.interstitial-card  {
  box-shadow: 0 8px 10px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  border-radius: 15px; /* 5px rounded corners */
  padding: 10px;
  margin:10px;
}






img {
 /* empty right now */
}




/* formatting the columns - */

.leftwardPanel {

}

.centralPanel {

}

.rightwardPanel  {

}






h5 {
padding-bottom: 0.2em; margin-bottom: 0.2em;
font-size: 16px; }

ul {
padding-top: 02.em;  margin-bottom: 0.2em;
}

ol  {
padding-top: 02.em;  margin-bottom: 0.2em;
}

ul{
   margin-top: px;
   padding-top: 0px;
}

ol {
     margin-top: px;
     padding-top: 0px;
}


h1 {
    padding-top: 2em;
}

h4 {
    margin-bottom: 0px;
    padding-bottom:0.5px;
}







/* css to move the training card to the bottom of the div  */
#header {
  position: relative;
  min-height: 150px;
}

#header {
  position: absolute;
  bottom: 0;
}



li {
padding-top: 4px;
}


p.container {
font-size: 1.2em;
}

#posterImage {
 display: flex;
  align-items: center;
  justify-content: center;

}

/* PIS link button eg curly trial  */


    .button-1 {
    background-color: #EA4C89;
    border-radius: 8px;
    border-style: none;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: "inter, sans-serif;
    font-size: 14px;
    font-weight: 200;
    height: 40px;
    line-height: 20px;
    list-style: none;
    margin: 0;
    outline: none;
    padding: 10px 16px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: color 100ms;
    vertical-align: baseline;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    }

    .button-1:hover,
    .button-1:focus {
    background-color: #F082AC;
    }




/* Dont put anything after this  */