:root {
    --BaseFontSize: 16px;
    --bg-color: #222;
    --text-color: #ccc;
    --link-color: #1A3969;
    --link-hover: #0056b3;

    /* Inputs */
    --input-border: #ccc;
    --input-bg: #fff;
    --input-text: #333;
    --input-radius: 4px;
    --input-padding: 8px;
    --focus-border: #007BFF;
}
html { font-size: var(--BaseFontSize); -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }


html, body, header, section, nav, main, footer { 
    margin: 0px; 
    font-family: 'Open Sans', sans-serif; 
    color: var(--text-color); 
}

body {  background-color: var(--bg-color); }

h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

/* text */
p { margin: 0 0 1rem 0; }
a { color: var(--link-color); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--link-hover); }


/* TopNav */
.topnav { 
    padding: 0px;
    margin-top: 30px; margin-bottom:60px; width: 70%; min-width:600px; margin-left: auto; 
    margin-right: auto; position: relative;
    /*border-radius: 2px;
    border: 2px solid var(--MenuBG); */
    box-shadow: 2px 2px 18px 1px rgba(0,0,0,0.69);  
    -webkit-box-shadow: 2px 2px 18px 1px rgba(0,0,0,0.69);
    -moz-box-shadow: 2px 2px 18px 1px rgba(0,0,0,0.69); 
}

.topnav #bg { 
    /*background-color: var(--MenuBG);*/
    background: #1A3969;
    background: linear-gradient(90deg, rgba(63, 93, 138, 1) 0%, rgba(26, 57, 105, 1) 100%);
    position: absolute;
    z-index: -100;
    top: 0; bottom: 0; left: 0; right: 0;
    width: 100%; height: 100%; opacity: 0.8;
    /*border-radius: 3px;*/
}

.topnav ul { opacity: 1.0; list-style-type: none; margin: 0; padding: 0; overflow: hidden; background-color: var(HeaderBG); }
.topnav li { display: inline-block; height: 40px; }

.topnav li a, .dropbtn { display: block; height: 100%; line-height: 40px; vertical-align: middle;  padding: 0px 16px; color: #ebebeb; text-align: center;  text-decoration: none; text-shadow: 3px 4px 4px rgba(0,0,0,0.6); }
.topnav li:hover, .dropdown:hover .dropbtn {
    background: #788EB0;
    background: linear-gradient(90deg, rgba(26, 57, 105, 1) 0%,  rgba(63, 93, 138, 1) 100%); 
}


.card-deck {  
    padding:10px;
    min-height:150px;
    display: grid; /* Enables CSS Grid layout for the container */
    grid-template-columns: repeat(auto-fill, minmax(225px, 1fr)); /* Creates a responsive grid with flexible columns */
    gap: 20px; /* Adds space between the grid items (cards) */
}

.card {   
    border: 10px solid #FFF;
    border-radius: 10px;;
    background-color: #ddd;
    height:300px;
    width:200px;
    padding: 10px;
    text-align: center;
    color: #444;

    box-shadow: 2px 2px 18px 10px rgba(0,0,0,0.69);  
    -webkit-box-shadow: 2px 2px 18px 10px rgba(0,0,0,0.69);
    -moz-box-shadow: 2px 2px 18px 10px rgba(0,0,0,0.69);

    /* Add more styling as needed */ 
}
a .card { text-decoration: none; color: #444; }
.card img { height:150px; width:150px; margin-top: 20px; margin-left:auto; margin-right:auto; }
.card-title { text-decoration: none; font-size: 2rem; font-weight: bolder; color: var(--link-color); }
.card-role { background-color:#ccc;  height: 90px; overflow: hidden; color: #333; }


section {
    margin:20px;
    padding:20px;
    background-color: #141414;
}



  input,
  select,
  textarea,
  button {
    font-family: inherit;
    font-size: 1rem;
    border-radius: var(--input-radius);
    border: 1px solid var(--input-border);
    padding: var(--input-padding);
    background-color: var(--input-bg);
    color: var(--input-text);
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  input,
  select,
  textarea {
    width:95%;
    margin-left: auto; margin-right: auto;
  }
  
  input:focus,
  select:focus,
  textarea:focus {
    border-color: var(--focus-border);
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
  }
  
  input[type="checkbox"],
  input[type="radio"] {
    width: auto;
    padding: 0;
    border: none;
    box-shadow: none;
    vertical-align: middle;
    margin-right: 0.5em;
  }
  
  label {
    display: block;
    margin: 0.5em 0 0.2em;
    font-weight: 500;
  }
  
  textarea {
    resize: vertical;
    min-height: 100px;
    field-sizing: content;
  }
  
  select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75em center;
    background-size: 12px 8px;
    padding-right: 2em;
  }
  
  input[type="file"] {
    padding: 4px;
    border: none;
    background: none;
  }
  
  button,
  input[type="submit"],
  input[type="button"] {
    background-color: var(--focus-border);
    color: #fff;
    cursor: pointer;
    border: none;
  }
  
  button:hover,
  input[type="submit"]:hover,
  input[type="button"]:hover {
    background-color: #0056b3;
  }
  
  fieldset {
    border: 1px solid #ddd;
    padding: 1em;
    margin-bottom: 1em;
  }
  
  legend {
    font-weight: bold;
    padding: 0 0.5em;
  }
  .btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--input-radius);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    color: white;
    background-color: var(--focus-border);
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
  }
  
  .btn:hover {
    background-color: #0056b3;
  }

 /* Normalize a.btn to match button base styles exactly */
a.btn {
  font-family: inherit;
  font-size: 1rem;
  border-radius: var(--input-radius);
  border: 1px solid var(--input-border);
  padding: var(--input-padding);
  background-color: var(--focus-border);
  color: #fff;
  box-sizing: border-box;
  outline: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease-in-out;
}

a.btn:hover {
  background-color: #0056b3;
}


  /* Green / approve */
.btn-green,
.approve {
  background-color: #28a745;
}
.btn-green:hover,
.approve:hover {
  background-color: #218838;
}

/* Red / disapprove */
.btn-red,
.disapprove {
  background-color: #dc3545;
}
.btn-red:hover,
.disapprove:hover {
  background-color: #c82333;
}


.profile-container {
    /*border: 1px solid green;*/
}

.profile-left {
    text-align: center;
    background-color: #666;
    float: left;
    padding: 5px;
    width: 28%;
}

.profile-content {
    /*border: 1px solid white;*/
    float:left;
    padding: 5px;
    width: 68%;
}

