
@font-face {
    font-family: 'Stolzl Display';
    src: url('/fonts/Stolzl_Display_Medium.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

body { 
    font-family: Arial;  
    background: #f7f7f7; 
    height:100%;
    }
/* form { 
    max-width: 400px; 
    margin: auto; 
    } */
label { 
    display: block; 
    margin-bottom: 5px; 
    font-weight: bold; 
    }
input { 
    width: 100%; 
    padding: 10px;
    /* margin-bottom: 15px;  */
    border: 1px solid #ccc; 
    border-radius: 5px; 
    }
button { 
    /* width: 100%;  */
    padding: 10px; 
    background: #007BFF; 
    color: white; 
    border: none; 
    border-radius: 5px; 
    cursor: pointer; 
    }
button:hover {
        background: #0056b3; 
    }
table {
     width: 100%; 
     border-collapse: collapse; 
     margin-bottom: 20px;
    border-radius: 0.5rem 0.5rem 0 0; /* Uses Bootstrap's large radius */
    overflow: hidden; /* Uses Bootstrap's large radius */
    }
th {
    padding: 10px; 
    text-align: left;
    background-color: #2C3E50 !important;
    color: #fff !important;
    font-family: 'Stolzl Display', Arial, sans-serif;
    }

td { 
    padding: 10px; 
    border: 1px solid #ccc; 
    text-align: left;
    }
/* Global Bootstrap Nav Tabs Customization */
.nav-tabs,
.nav-tabs .nav-link,
.nav-tabs .nav-item {
    font-family: 'Stolzl Display', Arial, sans-serif;
    }

.app-flex-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100vw;
    background: #f8f9fa;
    transition: background 0.2s;
}
.main-content {
    flex: 1 1 auto;
    padding: 32px 32px 32px 32px;
    min-width: 0;
    margin-left: var(--main-content-margin-left);
    margin-right: 75px;
}
.main-content.transition-margin {
    transition: margin-left 0.4s cubic-bezier(.4,0,.2,1);
}
.page-title {
    font-family: 'Stolzl Display';
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: 1px;
}
.back-nav-btn.transition-margin{
    transition: margin-left 0.4s cubic-bezier(.4,0,.2,1);
}
/* Remove margins when sidebar is hidden */
.main-content.no-sidebar {
    margin-left: var(--main-content-margin-left);
    margin-right: 0;
}
@media (max-width: 991.98px) {
    .app-flex-wrapper {
    flex-direction: column;
    }
    .main-content {
    padding: 16px 8px;
    margin-left: 0;
    margin-top: 0;
    }
}

@media (max-width: 576px) {
  .container {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
}