﻿a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

a {
    color: #28a745;
    transition: color 0.1s;
}

a:hover {
    color: darkgreen;
}

#a {
    color: #28a745;
    transition: color 0.1s, text-shadow 0.1s;
}

#a:hover {
    color: lightgreen;
    text-shadow: 2px 2px 5px;
}

.btn-primary {
    padding: 12px;
    border-radius: 16px;
    color: #fff;
    background-color: #28a745;
    border: 2px solid #28a745;
}

button a {
    padding: 16px 16px;
    color: #fff;
    transition: color 0.1s;
}

button a:hover {
    color: dimgray;
    text-decoration: none;
}

#button, #registerSubmit {
    padding: 12px;
    border-radius: 16px;
    color: #fff;
    background-color: #28a745;
    border: 2px solid #28a745;
    transition: background-color 0.1s, border-color 0.1s, color 0.1s;
}

#button:hover, #registerSubmit:hover {
    background-color: lightgreen;
    border-color: lightgreen;
    color: dimgray;
}

#button:focus, #registerSubmit:focus {
    outline: solid;
    outline-color: dimgray;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #28a745;
    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;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
  /* Margin bottom by footer height */
  margin-bottom: auto;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: normal;
  line-height: 60px; /* Vertically center the text there */
}

input:focus {
    outline: none;
    border: 1px solid lightgreen;
}

/*Make inputs glow green instead of blue when focused*/
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
    border-color: lightgreen;
    box-shadow: 0 1px 1px lightgreen inset, 0 0 8px lightgreen;
    outline: 0 none;
}

.text-area {

}

.text-area:focus {
    border-color: lightgreen;
    box-shadow: 0 1px 1px lightgreen inset, 0 0 8px lightgreen;
    outline: 0 none;
}

.my-dropdown {
    position: relative;
}

.my-dropdown-menu {
    position: absolute;
    left: 0;
    top: calc(100% + .25rem);
    background-color: white;
    padding: .75rem;
    border-radius: .25rem;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .5);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 250ms ease-in-out, transform 250ms ease-in-out;
}

.my-dropdown:hover .my-dropdown-menu {
    opacity: 1;
    transform: translateY(4px);
}

.my-nav-link {
    border-bottom: 1px solid rgb(212, 212, 212);
    border-radius: 2px;
    background-color: white;
    transition: background-color 150ms ease-in-out;
}

.my-nav-link:hover {
    background-color: rgb(212, 212, 212);
}

.my-nav-link-2 {
    border-radius: 5px;
    transition: background-color 150ms ease-in-out;
}

.my-nav-link-2:hover {
    background-color: rgba(212, 212, 212, 0.4);
}

.clipboardBtn {
    border: none;
    background-color: rgba(0,0,0,0);
    font-size: 28px;
    transition: background-color ease 0.5s;
}

.clipboardBtn:focus {
    background-color: green;
}