/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Mar 1, 2019, 12:20:22 PM
    Author     : hdias
*/



* {
    margin: 0;
    padding: 0;
}


img {
    image-orientation: from-image;
}

.imgbox {
    display: grid;
    height: 100%;
}

.center-fit {
    max-width: 100%;
    max-height: 100vh;
    margin: auto;
}

.button {
    background-color: #298A08;
    border: none;
    color: white;
    padding: 25px 50px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    border-radius: 12px; /* border-radius: 50%; */
    font-family: "Verdana", Geneva, sans-family;
}

.button_selected {
    background-color: #FF0000;
    border: none;
    color: white;
    padding: 25px 50px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    border-radius: 12px; /* border-radius: 50%; */
    font-family: "Verdana", Geneva, sans-family;
}

.h1{
    color: red;
    text-align: center;
    font-family: "Impact", Charcoal, sans-serif;
    font-style: normal;
    font-size: 40px;
    font-weight: bold;
}

.h2{
    color: green;
    text-align: center;
    font-family: "Verdana", Geneva, sans-serif;
    font-style: normal;
    font-size: 30px;
    font-weight: bold;
}

.h3{
    color: #F7D358;
    text-align: center;
    font-family: "Verdana", Geneva, sans-serif;
    font-style: normal;
    font-size: 20px;
    font-weight: bold;
}

.h4{
    color: black;
    text-align: center;
    font-family: "Verdana", Geneva, sans-serif;
    font-style: normal;
    font-size: 10px;
    font-weight: normal;
}   

.h5{
    color: black;
    font-family: "Verdana", Geneva, sans-serif;
    font-style: normal;
    font-size: 12px;
    font-weight: normal;
} 

.bg-img {
  /* The image used */
  background-image: url("/images/site/KBASSMASTER.png");

  min-height: 380px;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  /* Needed to position the navbar */
  position: relative;
}

/* Position the navbar container inside the image */
.container {
  position: absolute;
  margin: 20px;
  width: auto;
}

/* The navbar */
.topnav {
  overflow: hidden;
  background-color: #333;
}

/* Navbar links */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

body {
    font-size: 19px;
}
table{
    width: 50%;
    margin: 30px auto;
    border-collapse: collapse;
    text-align: left;
}
tr {
    border-bottom: 1px solid #cbcbcb;
}
th, td{
    border: none;
    height: 30px;
    padding: 2px;
    border-bottom: 1px solid #ddd;
}
tr:hover {
    background: #F5F5F5;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

form {
    width: 45%;
    margin: 50px auto;
    text-align: left;
    padding: 20px; 
    border: 1px solid #bbbbbb; 
    border-radius: 5px;
}

.input-group {
    margin: 10px 0px 10px 0px;
}
.input-group label {
    display: block;
    text-align: left;
    margin: 3px;
}
.input-group input {
    height: 30px;
    width: 93%;
    padding: 5px 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid gray;
}
.btn {
    padding: 10px;
    font-size: 15px;
    color: white;
    background: #5F9EA0;
    border: none;
    border-radius: 5px;
}
.btn_updating {
    padding: 10px;
    font-size: 25px;
    color: blue;
    background: #5F9EA0;
    border: none;
    border-radius: 5px;
}
.edit_btn {
    text-decoration: none;
    padding: 2px 5px;
    background: #2E8B57;
    color: white;
    border-radius: 3px;
}

.del_btn {
    text-decoration: none;
    padding: 2px 5px;
    color: white;
    border-radius: 3px;
    background: #800000;
}
.msg {
    margin: 30px auto; 
    padding: 10px; 
    border-radius: 5px; 
    color: #3c763d; 
    background: #dff0d8; 
    border: 1px solid #3c763d;
    width: 50%;
    text-align: center;
}

/* Navbar pub container */
.navbarpub {
    overflow: hidden;
    background-color:  #ffffff;
    font-family: Ubuntu;
    min-height: 70px;
    text-align: center;
}

    /* Links inside the navbar */
    .navbarpub b {
        display: inline-block;
        font-size: 16px;
        color: black;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }

    /* Add a red background color to navbar links on hover */
    .navbarpub b:hover, .dropdown:hover .dropbtn {
        background-color: red;
    }
