/* Html and Body Styling */
html, body {
    height: 100%;
    width: 100%;
    margin: 0;
}

body {
    background-color: #212121 !important;
}

/* Home Header Styling */
#home-navigation {
    padding: 15px;
    text-align: center;
    background-color:#212121;
}

#home-navigation a {
    margin-left: 10px;
    margin-right: 10px;
}

#home-navigation a img {
    height: 25px;
    filter: invert(1);
}

/* Footer Styling */
#footer{
    color: white;
    padding: 20px;
    padding-left: 10%;
    padding-right: 10%;
    background-color: black;
    margin: 0px;
}

#footer-left {
    border-right: 2px solid white;
}

#footer-left-logo {
    height: 150px;
    width: 150px;
}

#footer-right {
    padding-top: 20px;
    color: #97C932;
    font-size: 14px;
}

#footer-right a {
    color: #97C932;
    font-size: 14px;
}

/* Side Navigation Styling */
#side-nav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.85);
  overflow-x: hidden;
  transition: 0.5s;
}

#sn-head {
    padding: 15px;
    height: 65px;
    width: 100%;
}

#sn-head-icon {
    width: 35px;
    height: 100%;
    float: left;
    background: rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 20px;
    font-size: 15px;
    padding: 5px;
    font-weight: bold;
}

#sn-head-btn {
    width: 35px;
    height: 100%;
    float: right;
}

#sn-head-btn button {
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 20px;
    width: 35px;
    height: 100%;
    padding: 5px;
    outline: none;
}

#sn-head-btn button img {
    height: 10px;
    width: 10px;
}

#sn-body {
    padding: 15px;
    padding-top: 0px;
}

.sn-body-link {
    width: 100%;
    height: 42px;
    padding: 10px;
    display: block;
    text-decoration: none;
    color: black;
    border-radius: 10px;
    font-size: 12px;
    display: inline-block;
}

.sn-body-link:hover {
    text-decoration: none;
    color: black;
    background-color: orange;
    color: white;
}

.sn-body-link-icon {
    width: 30px;
    float: left;
}

.sn-body-link-icon .circle {
    width: 20px;
    height: 20px;
    border-radius: 15px;
    background-color: orange;
}

.sn-body-link:hover .circle {
    background-color: white;
}

.sn-body-link-caption {
    width: calc(100% - 30px);
}

/* Option Navigation Styling */
#option-nav {
  height: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.85);
  transition: 0.5s;
  color: black;
}

#on-head {
    height: 65px;
    padding: 15px;
    width: calc(100% - 30px);
}

#on-head-title {
    width: calc(100% - 45px);
    height: 100%;
    float: left;
    padding: 5px;
    padding-left: 0px;
}

#on-head-btn {
    width: 35px;
    height: 100%;
    float: right;
    margin-bottom: 10px;
}

#on-head-btn button {
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 20px;
    width: 35px;
    height: 100%;
    padding: 5px;
    outline: none;
}

#on-head-btn button img {
    height: 10px;
    width: 10px;
}

#on-body {
    /*width: 100%;*/
    height: calc(100% - 65px);
    padding: 15px;
    padding-top: 0px;
    overflow-x: hidden;
}

.on-body-btn {
    font-size: 12px;
    width: 100%;
    display: block;
    color: black;
    background: rgba(0, 0, 0, 0);
    border-radius: 10px;
    padding: 10px;
    text-align: left;
    border: 0;
}

.on-body-btn:hover {
    background-color: orange;
    color: white;
}

.on-body-btn:focus {
    outline: none;
    box-shadow: none;
}

/* Page Content Styling */
#content {
    padding: 20px;
    color: white;
    transition: margin-left .5s;
    overflow-x: hidden;
}

#nav-bar {
    margin: -5px;
    margin-bottom: 10px;
}

#nav-bar-group {
    width: 100px;
}

#nav-bar-group a img {
    height: 20px;
    filter: invert(1);
    margin-left: 2.5px;
    padding: 2px;
}

#nav-bar-group button {
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 20px;
    width: 35px;
    padding: 5px;
    outline: none;
}

#nav-bar-group button img {
    height: 10px;
    width: 10px;
    filter: invert(1);
}

#nav-bar span {
    font-size: 12px;
    padding: 9px;
    padding-right: 0px;
    color: white;
}

/* Final Page CSS*/
.tile {
    margin: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 25px;
    background-color: #97C932;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.tile-black {
    background-color: black;
}

.input {
    text-align: left;
    width: 100%;
    padding: 10px;
    border: 2px solid #fff;
    background-color: #97C932;
    border-radius: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: black;
    font-weight: bold;
    margin-bottom: 15px;
}

.input-label {
    background-color: black;
    color: white;
}

.label-textbox {
    overflow: visible;
    white-space: normal;
    text-overflow: "";
}

.input:focus {
    outline: none;
    box-shadow: none;
}

.input::placeholder {
    color: black;
}

/* Chrome, Safari, Edge, Opera */
.input::-webkit-outer-spin-button,
.input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

 /*Firefox */
.input[type=number] {
  -moz-appearance: textfield;
}

.input-disable {
    background-color: grey;
    pointer-events: none;
}

.bold_btn {
    background-color: #212121;
    color: #fff;
    padding: 20px;
    font-weight: bold;
    height: 70px;
    border: none;
}

.bold_btn:focus {
    outline: none;
    box-shadow: none;
}

.bold_btn:hover {
    background-color: #fff;
    color: #212121;
}

/**/
.input_group {
    display: flex;
}

.input_group_label {
    padding: 10px;
    width: 150px;
    background-color: #212121;
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.input_group_input {
    width: calc(100% - 150px);
    border-left: 0px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.input_group_input_1 {
    width: calc(100% - 100px);
    border-right: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.input_group_btn {
    width: 100px;
    border: none;
    border-radius: 5px;
    border-left: 0px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    background-color: #212121;
    color: white;
    font-weight: bold;
    padding: 15px;
    margin-bottom: 15px;
}

.input_box {
    height: 150px;
    border: 2px solid white;
    border-radius: 5px;
    margin-bottom: 15px;
    padding: 5px;
    overflow: auto;
}

.input_box_content {
    border: none;
    background-color: #212121;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    padding: 15px;
    margin: 2.5px;
    margin-bottom: 15px;
}

.input_box_content_close_image {
    height: 10px;
    padding-left: 5px;
    filter: invert(1);
}

/* CSS for Notification Modal */
#notification_header  {
    background-color: #97C932;
}

#notification_title  {
    color: #212121;
}

#notification_body {
    color: #212121;
}

#notification_close {
    background-color: #212121;
    border: none;
    border-radius: 0px;
    font-weight: bold;
}


/*For devices with less than 600px screen width */
@media screen and (max-width: 600px) {
    #side-nav {
        background-color: white;
        width: 100%;
        margin-left: -100%;
    }
    
    #option-nav {
        background-color: white;
        width: 100%;
        margin-left: -100%;
    }
    
    .tile {
        padding: 10%;
        padding-top: 60px;
    }
}

/* For devices with greater than 600px screen width */
@media screen and (min-width: 601px) {
    #side-nav {
        width: 250px;
    }
    
    #content {
        margin-left: 250px;
    }
    
    #option-nav {
        width: 250px;
        margin-left: -250px;
    }
}

/* For devices with greater than 600px screen width */
@media screen and (min-width: 1000px) {
    .tile {
        margin-left: 10%;
        margin-right: 10%;
    }
}