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;
}

/* Kendo Notification 樣式 */
.notification-info,
.notification-success,
.notification-warning,
.notification-error {
	padding: 12px 16px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	font-size: 14px;
	line-height: 1.4;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.notification-info .k-icon,
.notification-success .k-icon,
.notification-warning .k-icon,
.notification-error .k-icon {
	margin-right: 8px;
	font-size: 16px;
}

.notification-info {
	background-color: #e3f2fd;
	border-left: 4px solid #2196f3;
	color: #0d47a1;
}

.notification-success {
	background-color: #e8f5e8;
	border-left: 4px solid #4caf50;
	color: #1b5e20;
}

.notification-warning {
	background-color: #fff3e0;
	border-left: 4px solid #ff9800;
	color: #e65100;
}

.notification-error {
	background-color: #ffebee;
	border-left: 4px solid #f44336;
	color: #b71c1c;
}

/* Header */
.navbar-brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	white-space: normal; /* 讓文字自動換行 */
}

.logo-and-text {
	display: flex;
	align-items: center;
}

.logo-container {
	margin-right: 10px;
}

.logo-image {
	width: 260px; /* 調整 logo 圖片的寬度 */
	height: auto; /* 根據寬度自動調整高度 */
	margin-right: 10px; /* 調整 logo 與文字之間的間距 */
}

.brand-text {
	display: flex;
	flex-direction: column;
	font-weight: bold;
}

.sidebar-wrap {
  position: sticky;
  top: 0;              /* 若 navbar 有固定高度，可改成對應值，例如 64px */
  max-height: calc(100vh - 0px);
  overflow: auto;
}

#sideMenu .k-panelbar > .k-item .k-link { font-size: 0.95rem; }