﻿/* 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. */


/*Spinner*/

.spinner {
    margin: 100px auto;
    width: 40px;
    height: 40px;
    position: relative;
    text-align: center;
    animation: spinner 1.5s infinite linear;
}

    .spinner:before {
        content: "";
        width: 100%;
        height: 100%;
        border: 4px solid rgba(0, 0, 0, 0.1);
        border-top-color: #333;
        border-radius: 50%;
        position: absolute;
        top: 0;
        left: 0;
        animation: spinner 1.5s infinite linear;
    }

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*Validation Message*/
.validation-message{
    color : red;
}

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;
  background-color:white;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px; /* Vertically center the text there */
}


.container-fluid{
    background-color:white;
}


/*for the map*/
#map{
    height:90vh;
    width:100%;
}

.bottom-strip{
    position:absolute;
    top:50px;
    height:70px;
    width:80%;
    background-color:green;
    z-index:999;
    display:flex;
    justify-content:center;
    align-items:center;

}

.letter{
    height:2rem;
    width:2rem;
    border-radius:50%;
    background-color:white;
    margin:3px;
    color:black;
    justify-content:center;
    align-items:center;
    text-align:center;
    font-weight:bold;
}


.letter:hover{
    height:50px;
    width:50px;
    border-radius:50%;
}

.leaflet-popup-close-button{
    display:none;
}

.employee-card {
    padding: 5px;
    width: 300px;
}

.emp-info{
    align-items:center;
    padding:5px;
    border-radius:10px;
    display:flex;
    
    justify-content:space-between;
}
.em-name{
    font-weight:bolder;
}
.about-me{
    background-color:dimgray;
    color:white;
    border-radius:12px;
    padding:10px;
    text-align:justify;
}

.img-fluid{
    height:120px;
    width:120px;
    border-radius:50%;
}

body{
    font-size:12px;
    padding:0;
    margin:0;
}

.btn {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem;
}
.job-table-wrapper {
    max-height: 70vh; /* table area will not exceed 70% of viewport height */
    overflow-y: auto; /* vertical scroll inside the div */
    overflow-x: auto; /* keep horizontal scroll too */
}




