html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.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;
}
table .btn-primary {
    background-color: #0d6efd !important;
    color: white !important;
    border-color: #0d6efd !important;
}

table .btn-primary:hover {
    background-color: #0b5ed7 !important;
    border-color: #0a58ca !important;
}

/* Apply Segoe UI to the select input text */
.my-select .mud-input-slot {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

/* Apply Segoe UI to the dropdown items */
.my-select .mud-select-item {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}


.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
}

.login-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.role-toggle-img {
    cursor: pointer;
    transition: transform 0.2s;
}

    .role-toggle-img:hover {
        transform: scale(1.02);
    }

.login-card {
    background-color: #f8f8f8 !important;
    width: 100%;
    max-width: 400px;
    min-width: 300px;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
}