﻿/* 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. */

:root {
    --vermelho-nr: #ed1c24;
    --azul-nr: #2e3192;
    --primary: var(--azul-nr);
    --verde: #65da65;
    --azul: #add8e6;
    --vermelho: #fa7f72;
    --fundo-chat: #2f4f4f;
}

.nav-logo-img {
    width: 3.7rem;
}

.navbar-brand {
    color: white !important;
    text-decoration: underline;
}

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

/* Provide sufficient contrast against white background */
a {
  color: var(--azul-nr);
}

.btn-primary {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.navbar {
    background-color: var(--vermelho-nr) !important;
}

.nav-link {
    color: white !important;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.bg-primary {
    background-color: var(--vermelho-nr) !important;
}

/* 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: 60px;
}

.footer {
    white-space: nowrap;
}

.social-media {
    text-decoration: none !important;
    padding: 10%;
}

.login-page{
    padding-top: 4%;
}

.link-danger{
    color: var(--vermelho-nr);
    text-decoration: double;
}

.img-login {
    width: 20rem;
}

.card {
    margin-block: 1.2rem;
}

.btn-submit {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.btn-right {
    float: right;
}

.btn{
    font-weight: bold;
}

textarea {
    width: 100%;
    height: 250px;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 16px;
    resize: none;
}

.time-right {
    float: right;
    color: #333;
}

.time-left {
    float: left;
    /*color: #999;*/
}

.chat {
    /* width: 80%;*/
    height: 20rem;
    /*background-color: var(--fundo-chat);*/
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column-reverse;
    /*font-family: cursive;*/
    border-radius: 0.5rem;
    margin: 0 auto 1rem auto;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--vermelho);
    border-radius: 10px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: var(--vermelho-nr);
    }

@media only screen and (min-height: 800px) {
    .chat {
        height: 36rem;
    }
}