/* Colours Used:
Initial dark blue: rgb(0, 51, 152)
Kondiki Purple: rgb(74, 79, 158)

*/


/* Used for buttons on the home page */
.custColumn{
    border-radius: 15px;
    background: rgb(74, 79, 158);
    width: 450px;
    height: 150px; 
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-style: normal;
    font-weight: 500px;
    font-variant-ligatures: normal;
    font-size: 10px;
    letter-spacing: 1px;
    color: whitesmoke;
    box-shadow: 6px 6px 6px #888888;
    text-shadow: 6px 6px 6px #000000;
    
}

.menu-item a {
  color: black !important;
  text-decoration: none;
  display: block;
  padding: 6px 0;
}

.menu-item-header {
  color: rgb(74, 79, 158);
  font-weight: bold;
  padding: 6px 0;
}

/*Home page buttons*/
.homepage_buttons {
  background: rgb(74, 79, 158) !important;
  width: 400px !important;
  height: 140px !important;
  padding: 10px;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
  white-space: normal; /* Allow wrapping if needed */
}

.flagged_homepage_buttons {
  background: rgb(218, 105, 92) !important;
  width: 400px !important;
  height: 160px !important;
  padding: 10px;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
  white-space: normal; /* Allow wrapping if needed */
}

.button_container {
  background-color: #f5f4f4; /* Slightly off-white */
  color: black; /* Ensures text remains readable on the lighter background */
  padding: 20px; /* Adds some spacing inside the div */
  border-radius: 10px; /* Rounds the corners for a smooth look */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 
              0 1px 3px rgba(0, 0, 0, 0.06); /* Light shadow for hovering effect */
  transition: box-shadow 0.3s ease, transform 0.3s ease; /* Smooth hover transition */
  text-align: center;
}

/* Add this for hover effect */
.homepage_buttons:hover {
  background: rgb(86, 94, 179) !important; /* Replace with the desired hover color */
}

/* Used for input form text boxes */
.input-field {
  width: 50%; /* Adjust the width as needed */
  height: 50px;
  box-sizing: border-box; /* Ensures padding doesn't affect width */
  border-radius: 5px;
  padding: 5px; /* Optional: for inner spacing */
  font-size: 16px; /* Adjust font size */
}

.input-field::placeholder {
  color: #999; /* Adjust placeholder color */
}

html, body {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

/* Full width for .container-fluid */
.container-fluid {
  width: 100vw;   /* Full viewport width */
  padding: 2%;     /* Remove any padding to avoid spacing issues */
  margin: 0;      /* Remove margin */
}

/* Optional: Resetting masterDiv to avoid any fixed-width behavior */
.masterDiv {
  width: 100%;    /* Ensure it can expand */
  padding: 0;     /* Remove padding if present */
}


/* Used for buttons that submit or return */
.btn-primary{
    background-color: rgb(0, 51, 152);
}


.btn-white{
    background-color: whitesmoke; 
}

/* Add this for hover effect */
.btn-white:hover {
  background: rgb(181, 187, 255) !important; /* Replace with the desired hover color */
  color: rgb(255, 255, 255);
}

/* Used for text on a blue background */
.loginText{
    color: whitesmoke; 
    font-family: Verdana, Geneva, Tahoma, sans-serif; 
    font-style: normal; 
    font-weight: 500px; 
    font-size: 25px;
    } 

/* Used for headings at the top of pages */
.assessmentHeading{
    color: whitesmoke; 
    font-family: Verdana, Geneva, Tahoma, sans-serif; 
    font-style: normal; 
    font-weight: 500px; 
    font-size: 40px;
    text-shadow: 6px 6px 6px #000000;
    }

/* Used for question text */
.questionHeading{
    color: rgb(0, 0, 0);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
}

/* Used for each section heading in assessment */
.sectHeading{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
    font-size: 25px;
}

/* Used for response options in assessment */
.questionOpt{
    color: black;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 20px; 
}


/* Positioning and styling for the hamburger icon */
.hamburger-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10;
  }
  
  .menu-icon {
    font-size: 24px;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
  }
  
  /* Dropdown menu styling */
  .menu {
    position: absolute;
    top: 60px; /* Adjust to be slightly below the icon */
    right: 20px;
    background-color: rgba(0, 51, 152, 0.9);
    border-radius: 8px;
    width: 200px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    padding: 10px;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 1050;
  }

  .blue-container {
    position: relative;
    z-index: 1; /* Lower z-index than dropdown */
  }
  
  .menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .menu ul li {
    margin: 10px 0;
  }
  
  .menu ul li a {
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    padding: 8px;
    display: block;
    border-radius: 5px;
  }
  
  .menu ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  /* Show the menu when it's active */
  .menu.visible {
    opacity: 1;
    visibility: visible;
  }
  