﻿@import "/css/customizedSiteStyle.css";

/* 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;
}

/*neu seit 07.08.23*/
.nav-link:hover {
    text-decoration: underline;
    text-decoration-color: dimgrey;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}
/* 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 */
}
/*------------------------------------------*/
/* CSS */
.button-52 {
    font-size: 16px;
    font-weight: 200;
    letter-spacing: 1px;
    padding: 13px 20px 13px;
    outline: 0;
    border: 1px solid black;
    cursor: pointer;
    position: relative;
    background-color: rgba(0, 0, 0, 0);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

    .button-52:after {
        content: "";
        background-color: #ffe54c;
        width: 100%;
        z-index: -1;
        position: absolute;
        height: 100%;
        top: 7px;
        left: 7px;
        transition: 0.2s;
    }

    .button-52:hover:after {
        top: 0px;
        left: 0px;
    }

@media (min-width: 768px) {
    .button-52 {
        padding: 13px 50px 13px;
    }
}
/*change upload butttnos */
.upload-btns-container {
    display: flex;
    flex-direction: column;
    width: 20em;
}
.upload-btn {
    margin: 0.5em;
    padding: 1em;
    border: none;
    border-radius: 3px;
    font-size: 1.3em;
    background-color: #eea29a;
    color: black;
}
    .upload-btn:hover {
        background-color: #c94c4c;
        color: white;
    }


/*-----------------FAQ-----------*/
.faq-div {
    background-color: white;
    margin-top: 1em;
}

.faq-details {
    box-shadow: 2px 0 2px var(--box-shadow-color);
    padding-bottom: 1em;
    border-radius: 3px;
    margin-bottom: 1em;
}

.faq-summary {
    background-color: #022540;
    color: white;
    padding: 1em;
    border-radius: 3px;
}

.faq-text {
    padding: 1em;
}