html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.nav-dropdown:hover .dropdown-content {
    display: block
}
.dropdown-content {
    position: absolute;
    display: none;
    background-color: white;
    border: 1px solid black;
}

.nav-item:hover {
    background-color: darkgrey
}

button.no-outline {
    border: none;
    background-color: transparent;
    text-decoration: none;
}
.override_screen {
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 1, 1, 0.5)
}
.override_child {
    background-color: white;
    width: 60%;
    height: 90%;
    margin-top: 2.5%;
    margin-left: 20%;
    border: 1px solid darkgrey;
    border-radius: 5px;
    padding: 10px
}

a.undecorated, a.undecorated:hover, a.undecorated:visited {
    text-decoration: none;
    color: black
}
.error {
    color: red;
    font-size: 0.9em;
    display: block;
}
.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .5);
}


.rounded {
    border-radius: 7px;
}

div.inline {
    display: inline-grid;
    padding: 0.75rem
}

body {
    background-color: rgb(225, 225,225)
}
.primary_background {
    background-color: white;
}

input[type=submit] {
    background-color: lightgrey;
    border: none;
    border-radius: 2px;
}
.centered-div {
    min-height: 0.8vh;
    width: 100%;
    margin: auto;
    padding: 10px;
}
.center-me {
    width: auto;
    margin: auto
}
.small-border {
    border: 1px solid #e5e5e5
}
a.fake-button, *:hover *:visited *:focus {
    background-color: #e5e5e5;
    color: black;
    display: inline-block;
    border-radius: 7px;
    padding: 5px;
    margin: 5px;
    text-align: center;
    text-decoration: none;
}

.close-button {
    border-radius: 50%;
    border: 1px solid #e5e5e5;
    float: right;
}
.close-button:hover {
    background-color: red;
}
.notif-success {
    width: 80%;
    background-color: green;
    color: white;
    border-radius: 10px;
    padding: 10px;
    margin-left: 10%;
    animation: slide-down;
    animation-duration: 3s;
    margin-bottom: 10px;

}
.full-height {
    min-height: 0.75vh;
}

@keyframes slide-down {
    from {
        transform: translateY(-100px);
    }
    to {
        transform: translateY(0);
    }
}
