﻿/* 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. */
html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

html {
    font-size: 14px;
}

a.navbar-brand {
    padding-left: 10px;
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

a {
    color: #0077cc;
}

.btn-primary {
    color: #fff;   /*blue i think?*/
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.page-notification-bar {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #388E3C; /*  green background color */
    color: white; /*  text color white */
    border: 1px solid #2E7D32; /*  darker green border */
    padding: 3px; /* Add padding for better spacing */
    padding-right: 40px; /* for button */
    padding-left: 40px; /* for centering */
}

.announcement-label {
    font-weight: bold;
    text-decoration: underline;
    text-align: center;
    margin-bottom: 3px; /* Add margin below the label */
}

.notification-message {
    text-align: center;
    font-family: 'Verdana', 'Arial', sans-serif; /* Professional yet approachable font */
    font-size: 14px; /* Adjust font size as needed */
}

.notification-close-button {
    position: absolute;
    top: 6px;
    right: 6px;
    color: white; /* Set the text color to white */
    font-size: 16px;
    cursor: pointer;
    border: 1px solid white;
    border-radius: 5px; /* Border radius for rounded corners */
    background-color: #d32f2f; /* Red background color for the close button */
}

.notification-close-button:hover {
    background-color: #b71c1c !important; /* Darker red shade for hover */
    color: white !important; /* Ensure the text color stays white */
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.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;
}

.custom-btn:focus, .custom-btn:active:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb !important;
}

.left-align button {
    margin-right: 10px;
}

.no-wrap {
    white-space: nowrap;
}

.footer {
    position: absolute;
    text-align: center;
    width: 100%;
    padding: 20px 0; /* Adds 20px padding above and below the footer */
}

.navbar {
    width: 98%;
    margin: 0 auto;
}

.layout-container {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}
