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;
    height: 50px;
    width: 100%;
    display: flex;
    border: 1px solid #e4e4e4;
    flex-direction: row-reverse;
    padding-right: 10px;
    align-items: center;
    background: #ffffff;
    position: fixed;
    top: 0;
}
#financial-year-selector {
    width: 150px;
    text-align: center;
    padding: 5px;
    outline: lightgray;
    border: 1px solid lightgrey;
    border-radius: 5px;
    margin-right: 10px;
}
#branch-selector {
    min-width: 150px;
    text-align: center;
    padding: 5px;
    outline: lightgray;
    border: 1px solid lightgrey;
    border-radius: 5px;
    margin-right: 10px;
}

.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;
}
