html {
  font-size: 14px;
  font-family: 'Times New Roman', Times, serif;
}

@media (min-width: 768px) {
  html {
    font-size: 14px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    --margin-bottom: 60px;
    --font-family: 'Roboto', Helvetica, sans-serif !important; /* change this to your preferred font */
}
.main-container {
    margin-left: 85px;
    --border: 1px solid black;
    transition: margin-left 0.5s ease;
}
#topbar {
    --padding-left: 88px;
    display: flex;
    justify-content: space-between;
    height: 50px;
    width: 100%;
    border: 1px solid #e4e4e4;
    padding-right: 10px;
    align-items: center;
    background: #ffffff;
    position: fixed;
    top: 0;
}
#topbar-rhs {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}
#topbar-fyname {
    text-align: right;
    font-size: smaller;
}
#financial-year-selector {
    width: 150px;
    text-align: center;
    padding: 5px;
    outline: lightgray;
    border: 1px solid lightgrey;
    border-radius: 5px;
    margin-right: 10px;
}
#branchfy-selector-inner-container{
    display:flex;
}
#topbar-compname {
    font-size: 18px;
    font-weight: 500;
}
#branch-selector {
    min-width: 150px;
    text-align: center;
    padding: 5px;
    outline: lightgray;
    border: 1px solid lightgrey;
    border-radius: 5px;
    margin-right: 10px;
}
#branchfy-selector-container {
    background-color: #dcd6d6;
    display: none;
    position: fixed;
    top: 50px;
    border: 1px solid #d9d9d9;
    padding: 10px;
    z-index: 9999;
    right: 15px;
    box-shadow: 2px 1px 8px grey;
}
.pagination {
    align-items: center;
    flex-direction: row;
    border: 1px solid lightgrey;
    border-radius: 5px;
    --margin-bottom: 10px;
    width: 79px;
}

.pagination button {
    margin: 0 0px;
    padding: 5px 10px;
}
    .pagination button img {
        width: 10px;
        height: 10px;
    }
    .pagination #next-btn {
        --border-top: 1px solid lightgrey;
        --border-right: 1px solid lightgrey;
        --border-bottom: 1px solid lightgrey;
        --border-radius: 0px 5px 5px 0px;
        padding: 8px;
    }
    .pagination #prev-btn {
        --border-top: 1px solid lightgrey;
        --border-left: 1px solid lightgrey;
        --border-bottom: 1px solid lightgrey;
        --border-radius: 5px 0px 0px 5px;
        padding: 8px;
    }
    .pagination #page-info {
        width: 25px;
        text-align: center;
    }
#user-image-container{
    border-radius: 5px;
}
#user-image-container img {
    width: 40px;
    height: 40px;
}
.font-xl{
    font-size: x-large;
}
.white-button {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
    background-color: white;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
    border: 1px solid #e4e4e4;
    border-radius: 5px;
    color: black;
}
.white-button:hover{
    color: black;
    background-color: #e4e4e4;
}
#user-container{
    cursor: pointer;
}

/*Common Message Box - Begin*/
#msg-commonmessagebox {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 2000; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content */
#msg-commonmessagebox .popup-content {
    background-color: #fefefe;
    margin: auto;
    border: 1px solid #888;
    --width: 80%;
    max-width: 400px;
    position: relative;
    top: 120px;
    border-radius: 12px 12px 10px 10px;
}
/* The Close Button */
#msg-commonmessagebox .popup-close-filter {
    color: #949494;
    float: right;
    font-size: 20px;
    font-weight: bold;
    margin-right: 10px;
}

#msg-commonmessagebox-heading {
    font-weight: 600;
    color: white;
    font-size: 15px;
    padding: 10px;
}

#msg-commonmessagebox .popup-close-filter:hover,
#msg-commonmessagebox .popup-close-filter:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#msg-commonmessagebox-heading {
    font-weight: 600;
    color: black;
    padding: 10px;
}

#msg-commonmessagebox-heading-top-section {
    padding: 15px 15px 0px 15px;
}

#msg-commonmessagebox-submit {
    color: white;
    font-weight: 700;
    min-width: 100px;
    border-radius: 5px;
    padding: 2px;
    border: none;
}

#msg-commonmessagebox-body-section {
    padding: 10px 25px 15px;
}

#msg-commonmessagebox-submit-section {
    display: flex;
    flex-direction: row;
    padding: 10px 25px 15px;
}

/*Common Message Box - End*/