* {
    
}
html {
    background-image:url('../Images/Dark_Blue_Back.webp');
    background-size:cover;
}
body {
    width:90%;
    margin-left:5%;
    padding:0 0 0 0;
    background:transparent;
    font-family: quicksand, sans-serif;
    font-weight: 400;
    font-style: normal;
}
header {
    margin-top:5px;
    height:110px ; 
    background-color:white;
    border-radius:5px;
}
.header_main {
    display:flex;
    width:100%;
    height:100%;
}
.header_left {
    flex:30%;
}
.header_right {
    flex:70%;
}
h2 {
    color:#656469;
    border-right:solid;
    border-color:#656469;
}
h1 {
    color:#656469;
    padding:5px 5px;
}
.navbar {
  overflow: hidden;
  background-color: transparent;
  padding-top:50px;
}
.buttn {
    background-color:#656469;
    color:white;
    border-radius:5px;
    padding:10px 10px;
}
.navbar a {
  float: left;
  font-size: 16px;
  color: #656469;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: #656469;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  color: #101b54;
  font-weight:600;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.main_Section {
    background-color:white;
    border-radius:5px;
}
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 20px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 60%;
  border-radius:5px;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
#AddTask, #addloan {
    width:80%;
    margin-left:10%;
}
#AddTask, #addloan input, select {
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border-width: thin;
}
#AddTask, #addloan textarea {
    width:100%;
    border-radius:5px;
    height:100px;
}
#AddCategory {
    display:none;
}
input {    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border-width: thin;
    margin-bottom:10px;
    margin-top:10px;
}