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;
}

.dashboard-floating-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: linear-gradient(135deg,#1E8449,#58D68D);
    color: white;
    padding: 18px 22px;
    border-radius: 18px;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: .2s;
}

    .dashboard-floating-btn:hover {
        transform: translateY(-3px);
        text-decoration: none;
        color: white;
    }

    .dashboard-floating-btn span {
        margin-right: 8px;
    }

.side-menu {
    width: 230px;
    min-width: 230px;
    background: #145A32;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    position: sticky;
    top: 20px;
}

.side-brand {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: center;
}

.side-link {
    display: block;
    color: #EAF7EF;
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 10px;
    text-decoration: none;
    font-weight: bold;
}

    .side-link:hover,
    .side-link.active {
        background: #58D68D;
        color: #145A32;
        text-decoration: none;
    }

    .side-link.logout {
        margin-top: 25px;
        background: #922B21;
        color: #fff;
    }

        .side-link.logout:hover {
            background: #C0392B;
            color: #fff;
        }

    .side-link.disabled {
        opacity: .55;
        cursor: not-allowed;
    }

.dashboard-container {
    padding-top: 110px;
    padding-bottom: 40px;
}