html {
  font-size: 12px;
}

@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;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* AddedBy Sachin */

main {
    padding: 20px;
   /* background-color: #f3f4f6;*/
    min-height: 100vh;
}
body.dark-mode {
    /*background-color: #1f2937;*/
    background-color: #093e53;
    color: #e5e7eb;
}

.sidebar {
    background-color:#093e53; /* #093e53;*/
    min-height: 100vh;
    width: 160px;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
    transition: width 0.3s;
   
}

    .sidebar.collapsed {
        width: 70px;
    }

    .sidebar a {
        color: #d1d5db;
        text-decoration: none;
        display: flow;
        align-items: center;
        gap: 10px;
        padding: 10px 16px;
        border-radius: 6px;
        margin-bottom: 4px;
        align-items: center;
        align-content: center;
    }
    .sidebar a i{
        text-align:center;
    }
        .sidebar a:hover, .sidebar a.active {
            background-color: #00a879;
             
            color: #fff;
        }

    .sidebar .logo {
        text-align: center;
        color: #fff;
        font-size: 1.2rem;
        font-weight: 600;
        padding: 16px 0;
    }

.topbar {
    position: sticky;
    top: 0;
    z-index: 1020;
    /* background-color: #fff;*/
    background-color: #093e53;
    border-bottom: 1px solid #093e53;
    height: 56px;
    color:#fff;
}

body.dark-mode .topbar {
    background-color: #374151;
    border-color: #4b5563;
}

.content-wrapper {
    margin-left: 160px;
    transition: margin-left 0.3s;
    padding: 0px;
}

.sidebar.collapsed ~ .content-wrapper {
    margin-left: 70px;
}

.avatar-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.theme-toggle, .sidebar-toggle {
    cursor: pointer;
}