﻿/* 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. */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

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;
}
.list-group-item.mouseover {
    background: #fafafa;
    cursor: pointer;
}

.list-group-item .remove-item.mouseover {
    background: #aaf;
    cursor: pointer;
}
/* 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;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f8f9fc;
}

.table thead th {
    font-weight: 600;
}

.table-hover tbody tr:hover {
    background-color: #f1f3f9;
}

.footer {
    position: absolute;
    bottom: 0;
    right: 0; /* Aligns the footer to the left */
    width: auto; /* Ensures it doesn't stretch across the screen */
    white-space: nowrap;
    line-height: 5px; /* Adjust as needed */
    padding: 10px 20px; /* Adds spacing from the bottom and left */
}


.update-clientmenu {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap
}

.exporttable {
    text-align: center;
    border-collapse: collapse;
    border-spacing: 0;
}

.sidebar {
    background-color: #C8AB4E !important; /* Your preferred color */
    background-image: none !important;
}

.custom-sidebar {
    background-color: #C8AB4E !important;
    background-image: none !important;
}



.notification {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    z-index: 1000;
    transition: top 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    visibility: hidden;
}

    .notification.show {
        top: 0;
        opacity: 1;
        visibility: visible;
    }

.table-responsive {
    overflow-x: auto;
    white-space: nowrap; /* Prevent text from wrapping */
    max-width: 100%; /* Ensure it does not exceed the container width */
}

/* Authentication forms */
.card {
    max-width: 420px;
    margin: 40px auto;
    border-radius: 8px;
}