﻿/* 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 {
    --mdc-checkbox-checked-color: #1b6ec2;
}

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

header {
    background-color: #2c2c2c;
}

/* 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;
}

/*.navbar {
    background-color: #2c2c2c !important;
}

.navbar a {
    color: white !important;
}*/



.main-content {
    padding-left: 300px;
    padding-right: 25px;
    z-index: 1;
}

@media only screen and (max-width:767px){
    .main-content{
        padding-left:25px;
    }
}

.current-page{
    background-color:#1b6ec2;
}

.current-page a:hover {
    background-color: #2474c5 !important;
}

.sidebar {
    background-color: #2c2c2c;
    margin-top: -15px;
    padding-top: 15px;
    position: absolute;
    top: 72px;
    bottom: 60px;
    width: 275px;
    z-index: 1000;
}

.sidebar .sidebar-sticky ul li{

}

.sidebar .sidebar-sticky ul li a{
    line-height: 75px;
    display:block;
    padding-left:46px;
    margin-left:-15px;
    color:white;
    text-decoration:none;
    white-space:nowrap;
}

.sidebar .sidebar-sticky ul li a:hover {
    background-color:#3e3e3e;
}

#delfi-logo{
    width:200px;
    height:100px;
    background-image:url('../images/DelfiTech_black.png');
    background-size: contain;
    background-repeat:no-repeat;
    display:block;
    position:fixed;
    bottom:0;
    left:40px;
}



/* 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 {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px; /* Vertically center the text there */
}


.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;

    color: inherit;
}


.divider-header {
    position: relative;
    text-align: center;
    margin-top: 10px;
}

.divider-header:before {
    content: "";
    display: block;
    border-top: solid 1px #bebebe;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    z-index: 0;
}

.divider-header span {
    background: #fff;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

input:-webkit-autofill {
    position: absolute;
    margin-left:-15px;
    padding-left:15px;
}

.mobile-page {
    height: 35px;
}

.mobile-page a {
    color: white;
}

.current-page-mobile a {
    color: grey;
}

.mdc-form-field > label{
    margin:auto;
}

.input-border {
    border-radius: 5px;
    border: solid 1px rgba(0, 0, 0, 0.38);
    padding: 15px 10px 15px 10px;
}

@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    src: url(/fonts/material-symbols.woff2) format('woff2');
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px; /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
}


.copy-to-clipboard {
    width: 50px; /* Set the width of the button */
    height: 50px; /* Set the height of the button */
    background-color: #dedede; /* Set the background color */
    color: #1d1d1d; /* Set the text color */
    display: flex; /* Use flexbox to center content */
    align-items: center; /* Vertically center the text */
    justify-content: center; /* Horizontally center the text */
    border-radius: 50%; /* Make the button circular */
    border: none; /* Remove any border */
    cursor: pointer; /* Change the cursor on hover */
    font-size: 16px; /* Font size of the text */
    text-align: center; /* Center text alignment */
    text-decoration: none; /* Remove text underline (if any) */
    transition: background-color 0.3s ease; /* Smooth hover effect */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    padding: 0; /* Remove any default padding */
    flex-shrink: 0; /* Prevent button from shrinking */
    flex-grow: 0; /* Prevent button from growing */
    margin-left: 5px;
}

    /* Ensuring the whole button changes color on hover */
    .copy-to-clipboard:hover {
        background-color: #c9c9c9; /* Darken the background color on hover */
    }