﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  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: 100px;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  max-height: 100px;
}

.page-header {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
}

.page-description {
    font-size: 20px;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
    grid-gap: 10px;
}

.value-container {
    height: 130px;
    border: 3px solid black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.value-name {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}

.value-buttons-container {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.material-icons.md-18 {
    font-size: 18px;
}
.material-icons.md-36 {
    font-size: 36px;
}

.copy-link-button {
    padding: 3px;
}

.value-button {
    width: 45px;
    height: 45px;
    padding: 1px;
}

.value-button.accept {
    color: green;
}

.value-button.reject {
    color: red;
}

.value-selected {
    pointer-events: none;
    opacity: 0.2;
}

.value-selected.accepted {
    border-color: green;
}

.value-selected.rejected {
    border-color: red;
}

.footer-logo {
    min-width: 300px;
}

.footer-edu-logo {
    min-width: 100px;
}

.footer-disclaimer {
    font-size: 11px;
    word-wrap: normal;
}

.toast-container {
    position: relative
}

.toast-stack {
    position: absolute;
    top: 0px;
    right: 0px;
}

.toast-success {
    background-color: green;
    color: white;
}

.toast-error {
    background-color: red;
    color: white;
}