﻿/* 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;
    }
}

.logoutButton {
    position: absolute;
    left: 10%;
}

.blackListButton {
    position: absolute;
    left: 20%;
}

@media only screen and (max-width: 960px) {
    .logoutButton {
        position: initial;
    }

    .blackListButton {
        position: initial;
    }
}

.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 {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

table {
    border-radius: 20px 20px 0px 0px;
}

.table-responsive {
    border-radius: 20px 20px 20px 20px;
    background-color: #96DED1;
}

table th {
    border: 1px solid #dee2e6;
    color: white;
    background-color: #088F8F;
}

.table-responsive-black-list {
    border-radius: 20px 20px 20px 20px;
    background-color: #ffc0cb;
}

table.black-list th {
    border: 1px solid #dee2e6;
    color: white;
    background-color: darkred;
}
table.expenses-list th {
    border: 1px solid #dee2e6;
    color: white;
    background-color: darkgreen;
}
.table-responsive-expenses-list {
    border-radius: 20px 20px 20px 20px;
    background-color: lightgreen;
}
table.expenses-list td {
    border: 1px solid #dee2e6;
    background-color: lightgreen;
}
.expenses-list-color {
    color: darkgreen !important;
}
.black-list-color {
    color: darkred !important;
}

table.black-list td {
    border: 1px solid #dee2e6;
    background-color: #ffc0cb;
}

table td {
    border: 1px solid #dee2e6;
    background-color: #96DED1;
}

.bg-custom {
    background-color: #088F8F;
}

.font-color-custom {
    color: #088F8F;
}

.control-label {
    color: #088F8F;
    font-weight: bold;
}

h1, h4, h3, dl {
    color: #088F8F;
}

.bg-custom-component {
    background-color: #96DED1;
}

input[type="text"] {
    background-color: #96DED1 !important;
}

input[type="datetime-local"] {
    background-color: #96DED1 !important;
}

input[type="number"] {
    background-color: #96DED1 !important;
}

input[type="date"] {
    background-color: #96DED1 !important;
    text-align: right;
}

input[type="time"] {
    background-color: #96DED1 !important;
    text-align: right;
}

input[type="file"] {
    background-color: #96DED1 !important;
}
textarea {
    background-color: #96DED1 !important;
}
select {
    background-color: #96DED1 !important;
}

    select.black-list {
        background-color: #ffc0cb !important;
    }

input[type="text"].black-list {
    background-color: #ffc0cb !important;
}

input[type="number"].black-list {
    background-color: #ffc0cb !important;
}
input[type="submit"].black-list {
    background-color: darkred !important;
}
.menuStyle {
    border: 1px solid #fff;
    border-radius: 5px 5px 5px 5px;
}

.dropdown-menu {
    border: 1px solid #96DED1;
    border-radius: 5px 5px 5px 5px;
    text-align: right;
}

@media only screen and (max-width: 580px) {
    .dropdown-menu {
        text-align: left;
    }
}

input[type="password"].ChangePassword {
    background-color: lightgreen !important;
}

h6 {
    color: #e32636;
}

.car_red_color {
    color: #e32636 !important;
    font-weight: bold;
}

.red-dot {
    height: 10px;
    width: 10px;
    background-color: #e32636;
    border-radius: 50%;
    display: inline-block;
}

.font-color-custom input[type="text"] {
    background-color: transparent !important;
}

input[type="text"].expenses-list-theme {
    background-color: lightgreen !important;
}

input[type="datetime-local"].expenses-list-theme {
    background-color: lightgreen !important;
}

input[type="number"].expenses-list-theme {
    background-color: lightgreen !important;
}

input[type="date"].expenses-list-theme {
    background-color: lightgreen !important;
    text-align: right;
}

input[type="time"].expenses-list-theme {
    background-color: lightgreen !important;
    text-align: right;
}

input[type="file"].expenses-list-theme {
    background-color: lightgreen !important;
}

select.expenses-list-theme {
    background-color: lightgreen !important;
}
textarea.expenses-list-theme {
    background-color: lightgreen !important;
}
.user-hint {
    position: absolute;
    top: 15%;
    left: 10%;
}
.border-glow {
    border: 2px solid #e32636;
    border-radius: 15px;
    animation: 2s infinite glow;
}

@keyframes glow {
    0% {
        border-color: white;
    }

    100% {
        border-color: #e32636;
    }
}

@-webkit-keyframes glow {
    0% {
        border-color: white;
    }

    100% {
        border-color: #e32636;
    }
}