﻿/* 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;
}

/* 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 */
}
.popup {
    min-height: 300px;
    min-width:550px;
    border: 3px solid #97212c;
    background-color: #d3e3fd;
    color: #97212c;
    border-radius: 20px;
    padding: 10px;
    padding-left:30px;
    padding-right:30px;
    position:fixed;
    top:30px;
    left:30px;
}
.popupdue, .popupexpdue {
    min-height: 300px;
	width:300px;
    border: 3px solid #97212c;
    background-color: #d3e3fd;
    color: #97212c;
    border-radius: 20px;
    padding: 10px;
    padding-left: 30px;
    position: fixed;
    top: 30px;
    left: 30px;
}
.close-btn, .close-duebtn, .close-expduebtn {
    background-color: #97212c;
    font-size: 19pt;
    font-weight: 700;
    border: 1px solid blue;
    border-radius: 5px;
    height: 40px;
    width: 40px;
    color: white;
    float: right;
}
.datalist td, th {
    padding: 5px;
    border: 1px solid black;
}
#tblreglist th {
    background-color: #1b6ec2;
    color: white;
}
.tbllist th {
    background-color: #1b6ec2;
    color: white;
}
.tbllist td {
    padding:5px;
   border:1px solid black;
}
.fixed-msg {
    position: fixed;
    bottom: 30px;
    right: 50px;
    background-color: #1b6ec2;
    color: white;
    min-height:50px;
    min-width:300px;
    text-align:center;
    font-weight:700;
    border-radius:10px;
}
.s-note{
    font-size:8pt;
    font-weight:500;
}
.erro-msg{
    position:fixed;
    bottom:100px;
    left:40px;
    background-color:brown;
    color:white;
    border-radius:10px;
    padding:15px;
}
.num {
    width: 100px;
    text-align: right;
}

/*Start popup css*/
.popup-container {
    position: relative; /* This is essential for positioning the pop-up */
    width: 300px;
}
.popup-search {
    width: 100%;
      
}
.popup-list {
    position: absolute;
    top: 100%; /* Position below the input field */
    left: 0;
    width: 100%;
    max-height: 200px; /* Limit the height and add a scrollbar */
    overflow-y: auto;
    border: 1px solid #ccc;
    background-color: white;
    z-index: 1000; /* Ensure it appears on top of other content */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

    .popup-list ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .popup-list li {
        padding: 10px;
        cursor: pointer;
    }

        .popup-list li:hover {
            background-color: #f0f0f0;
        }

/*End popup css*/