﻿/* 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: color-mix(in srgb, rgba(var(--color-sf-on-surface)) 50%, rgba(var(--color-sf-primary)));
}

.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;
}

.badge-theme {
    background-color: rgba(var(--color-sf-primary-container));
    color: rgba(var(--color-sf-on-primary-container));
}

.pill-bg {
    padding: 10px;
    font-size: 1em;
    margin-right: 6px;
    background-color: rgba(var(--color-sf-primary-container));
}

.pill-fg {
    color: rgba(var(--color-sf-on-primary-container));
}

/* 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;
    background-color: rgba(var(--color-sf-surface-variant));
    color: rgba(var(--color-sf-on-surface));
}
.navbar {
    background-color: rgba(var(--color-sf-surface)) !important;
    color: rgba(var(--color-sf-on-surface));
}
.nav-link {
    color: rgba(var(--color-sf-on-surface))!important;
}

.footer {
    background-color: rgba(var(--color-sf-surface));
    color: rgba(var(--color-sf-on-surface));
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    min-height: 69px; /* Vertically center the text there */
}
.footer .container {
        margin-top: 20px;
    }
.row {
    padding-top: 15px;
    padding-bottom: 15px;
}


.dropdown-menu {
    background-color: rgba(var(--color-sf-surface));
    color: rgba(var(--color-sf-on-surface));
}
.dropdown-item {
    background-color: rgba(var(--color-sf-surface));
    color: rgba(var(--color-sf-on-surface));
}
.dropdown-item:active {
    background-color: rgba(var(--color-sf-surface-variant));
}

.img-responsive {
    display: block;
    max-width: 100%;
    /*height: auto;*/
    height: 200px;
    object-fit: cover;
    margin: auto;
}

#ListUsersContainer {
    height:400px;
    overflow-x:auto;
}
#LogoUpload {
    height: 200px;
}

.e-flat {
    /* background-color: rgba(var(--color-sf-primary)) !important;*/
    /*color: rgba(var(--color-sf-on-surface)) !important;*/
    color: color-mix(in srgb, rgba(var(--color-sf-on-surface)) 50%, rgba(var(--color-sf-primary))) !important
}

.e-card-header-title {
    font-size: 18px !important;
    font-weight: bold !important;
}

div:has(> .report-details) {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.report-details {
    flex: 1;
    min-width: 0;
    display: block;
}

.report-summary {
    list-style: none;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    outline: none;
}

.report-summary::-webkit-details-marker {
    display: none;
}

.report-summary::after {
    content: '\25BC';
    font-size: 0.7em;
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.2s ease;
}

.report-details[open] > .report-summary::after {
    transform: rotate(180deg);
}

.report-details-content {
    margin-left: 0;
    padding-top: .5em;
    padding-bottom: 1em;
    word-break: break-all;
    overflow-wrap: anywhere;
    display: block;
}