﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6; 
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;   
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2; 
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
    padding: 15px 32px; /* Padding to extend the button size */
}
.button {
    background-color: #4CAF50; /* Green background */
    color: white; /* White text */
    padding: 15px 32px; /* Padding to extend the button size */
    text-align: center; /* Centered text */
    text-decoration: none; /* No underline */
    display: inline-block; /* Inline-block display */
    font-size: 16px; /* Font size */
    margin: 4px 2px; /* Margin */
    cursor: pointer; /* Pointer cursor on hover */
    border: Blue; /* No border */
    border-radius: 4px; /* Rounded corners */
    /* Sticky footer styles */
}

html {
  position: relative;
  min-height: 100%;
}
 
body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
    /* font-family: Arial, Helvetica, sans-serif body */
    /* Following lines were added om july 6 *************************************/
    padding-top: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
    padding-right: 0px;
    color: #333;
    font-size: medium;
    font-family: "Segoe UI",Verdana,Arial, Helvetica, sans-serif;
    background-color: lightblue;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px; /* Vertically center the text there */
}

/* first set start here the one above is the second set instruction for hover */
/* Dropdown button*/
.dropbtn {     
    background-color:#04AA6D; 
    color: white;
    padding: 10px 10px;
    font-size: 16px;
    border: thick;
    width: 200px;
}
.dropdown {
   position:relative;    
   display: inline-block; 
  /* background-color:aqua; */
}
/* dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    /* background-color: #f9f9f9; */
    background-color: black;
   /* padding: 12px 16px; */
    min-width: 210px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
/* Link inside the dropdown */
    .dropdown-content a {
        color: white;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        min-width: 200px;
        background-color: black;
        margin-bottom: 5px;
    }
/* Change color of dropdown links on hover */
/* .dropdown-content a:hover {background-color: #ddd;} */
    .dropdown-content a:hover {
        background-color: gray

    }

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
/*.dropdown:hover .dropbtn {background-color: #3e8e41; } */
/* Added content 1/9/2025 **********************************************************/
.dropdown:hover .dropbtn {
    background-color: deepskyblue; 
    max-width: 200PX;
}

/* Large rounded blue border */
hr.bbl {
    border: 10px solid blue;
    border-radius: 5px;
}

hr.bbl1 {
    border: 10px solid green;
    border-radius: 5px;
}

.container {
    max-width: 1600px;
    margin-left: 0px;
    margin-right: 0px;
    align-items: center;
}

.rcorner1 {
    border-radius: 25px;
    background: #73AD21;
    border: 2px solid white;
    padding:20px;
    width: 310px;
    height: 500px;
    font-size: 15px;
}

.rcorner2 {
    border-radius: 25px;
    background: Blue;
    border: 2px solid white;
    padding: 20px;
    width: 300px;
    height: 500px;     
    color: whitesmoke;
    font: bold
}

.rcorner3 {
    border-radius: 25px;
    background: url(/Images/SchoolAssets-10.jpg);
    background-position: left;
    background-repeat: repeat;
    padding: 20px;
    width: 200px;
    height: 470px;
    color:white;
}

.rcorner4 {
    border-radius: 25px;
    background: Darkcyan;
    border: 2px solid white;
    padding: 20px;
    width: 300px;
    height: 470px;     
    color: whitesmoke;
    font: bold
}
.rcorner5 {
    border-radius: 25px;
    background: white;
    border: 2px solid blue;    
    width: 310px;
    height: 500px;
    color: black;
    font: bold;
}
   .TFtable {
    width: 100%;
    border-collapse: collapse;
}

    .TFtable th {
        border: #4e95f4 2px solid
    }

    .TFtable td {
        padding: 7px;
        border: #4e95f4 1px solid;
    }
    /* provide some minimal visual accomodation for IE8 and below */
    .TFtable tr {
        background: #b8d1f3;
    }
/*  Define the background color for all the ODD background rows  */
   .TFtable tr:nth-child(odd) {
           // background: #b8d1f3;
            background: #e5e5e5
   }
/*  Define the background color for all the EVEN background rows  */
.TFtable tr:nth-child(even) {
    /* background: #dae5f4; */
    background: #a6dbed
}