html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background-color: #FAF8F6;
  color: #2C1810;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mk-heading {
  font-family: "Georgia", "Times New Roman", serif;
  color: #2C1810;
  font-weight: 700;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #F5F0EB;
}

::-webkit-scrollbar-thumb {
  background: #D4C4B8;
  border-radius: 0.25rem;
  transition: background 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
::-webkit-scrollbar-thumb:hover {
  background: #B8A89C;
}

.mk-transition-fast {
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mk-transition-base {
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mk-transition-slow {
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

:root {
  --mk-animation-fast: 150ms;
  --mk-animation-base: 200ms;
  --mk-animation-slow: 300ms;
  --mk-easing: cubic-bezier(0.4, 0, 0.2, 1);
  --mk-skeleton-start: #f5f0eb;
  --mk-skeleton-middle: #e8e0d8;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.mk-fade-in {
  animation: fadeIn var(--mk-animation-base) var(--mk-easing) forwards;
  will-change: opacity;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.mk-fade-out {
  animation: fadeOut var(--mk-animation-base) var(--mk-easing) forwards;
  will-change: opacity;
}

@keyframes slideInTop {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.mk-slide-in-top {
  animation: slideInTop var(--mk-animation-base) var(--mk-easing) forwards;
  will-change: transform, opacity;
}

@keyframes slideInBottom {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.mk-slide-in-bottom {
  animation: slideInBottom var(--mk-animation-base) var(--mk-easing) forwards;
  will-change: transform, opacity;
}

@keyframes scaleIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.mk-scale-in {
  animation: scaleIn var(--mk-animation-base) var(--mk-easing) forwards;
  will-change: transform, opacity;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.mk-shimmer {
  background: linear-gradient(90deg, var(--mk-skeleton-start), var(--mk-skeleton-middle), var(--mk-skeleton-start));
  background-size: 200% 100%;
  animation: shimmer 1.5s linear infinite;
  will-change: background-position;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.mk-bounce {
  animation: bounce var(--mk-animation-base) ease-in-out;
  will-change: transform;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.mk-pulse {
  animation: pulse var(--mk-animation-base) ease-in-out infinite;
}

@keyframes mkFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mk-anim-fade-in {
  animation: mkFadeIn var(--mk-animation-base) var(--mk-easing) forwards;
  will-change: opacity, transform;
}

@keyframes mkSlideInLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.mk-anim-slide-in-left {
  animation: mkSlideInLeft var(--mk-animation-base) var(--mk-easing) forwards;
  will-change: transform;
}

@keyframes mkScaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.mk-anim-scale-in {
  animation: mkScaleIn var(--mk-animation-base) var(--mk-easing) forwards;
  will-change: opacity, transform;
}

@keyframes mkPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(193, 127, 89, 0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(193, 127, 89, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(193, 127, 89, 0);
  }
}
.mk-anim-pulse {
  animation: mkPulse 2s infinite ease-in-out;
}

.mk-anim-shimmer {
  background: linear-gradient(90deg, #f5f0eb 25%, #e8e0d8 50%, #f5f0eb 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.mk-button {
  transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: none !important;
  font-weight: 600 !important;
}
.mk-button:hover:not(.mud-button-disabled) {
  transform: scale(1.02);
}
.mk-button:active:not(.mud-button-disabled) {
  transform: scale(0.98);
}

.mk-button-block {
  width: 100% !important;
}

.mk-button-secondary {
  border-color: #D4C4B8 !important;
  color: #2C1810 !important;
}
.mk-button-secondary:hover {
  background-color: #F5F0EB !important;
  border-color: #B8A89C !important;
}

.mk-button-outline {
  border-color: #C17F59 !important;
  color: #C17F59 !important;
}
.mk-button-outline:hover {
  background-color: #E8D5C9 !important;
}

.mk-card {
  border-radius: 0.75rem !important;
  overflow: hidden;
  transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #ffffff !important;
}

.mk-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mk-card-header {
  padding: 1rem;
  border-bottom: 1px solid #E8E0D8;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mk-card-body {
  padding: 1rem;
  flex-grow: 1;
}

.mk-card-footer {
  padding: 1rem;
  border-top: 1px solid #E8E0D8;
  background-color: #FAF8F6;
}

.mk-card-hoverable:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(44, 24, 16, 0.1), 0 4px 6px -2px rgba(44, 24, 16, 0.05) !important;
}

.mk-card-outlined {
  border: 1px solid #E8E0D8 !important;
}

.mk-stat-card .mk-stat-label {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.mk-stat-card .mk-stat-icon-container {
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mk-badge {
  font-weight: 700 !important;
  text-transform: uppercase !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.05em !important;
  padding: 4px 10px !important;
  height: auto !important;
  border: none !important;
  margin: 0.25rem;
}

.mk-badge-pill {
  border-radius: 9999px !important;
}

.mk-badge-square {
  border-radius: 0.25rem !important;
}

.mk-badge-primary {
  background-color: #E8D5C9 !important;
  color: #A5653D !important;
}

.mk-badge-success {
  background-color: #E8F5E9 !important;
  color: #4CAF50 !important;
}

.mk-badge-warning {
  background-color: #FFF3E0 !important;
  color: #FF9800 !important;
}

.mk-badge-error {
  background-color: #FFEBEE !important;
  color: #F44336 !important;
}

.mk-badge-info {
  background-color: #E3F2FD !important;
  color: #2196F3 !important;
}

.mk-badge-neutral {
  background-color: #F5F0EB !important;
  color: #2C1810 !important;
}

.mk-textfield {
  margin-bottom: 1rem !important;
}
.mk-textfield .mud-input-control {
  margin-top: 0 !important;
}

.mk-textfield-success .mud-input-outlined-border {
  border-color: #4CAF50 !important;
}
.mk-textfield-success .mud-input-label-inputcontrol {
  color: #4CAF50 !important;
}
.mk-textfield-success .mud-input-slot {
  color: #2C1810 !important;
}

.mk-product-card .mk-product-image-container {
  height: 180px;
  background-color: #F5F0EB;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mk-product-card .mk-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mk-product-card:hover .mk-product-image {
  transform: scale(1.05);
}
.mk-product-card .mk-product-placeholder {
  width: 100%;
  height: 100%;
  background-color: #F5F0EB;
}
.mk-product-card .mk-product-actions {
  display: flex;
  gap: 0.5rem;
}
.mk-product-card .mk-product-actions * {
  flex: 1;
}

.mk-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #FAF8F6;
  overflow-x: hidden;
}

.mk-layout-content {
  display: flex;
  flex: 1;
  margin-top: 64px;
}

.mk-sidebar {
  position: fixed;
  top: 64px;
  left: 0;
  bottom: 0;
  width: 280px;
  background: linear-gradient(180deg, #2C1810 0%, #4A2C1A 100%);
  color: #ffffff;
  z-index: 150;
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1), width 200ms cubic-bezier(0.4, 0, 0.2, 1);
  border-right: 1px solid #E8E0D8;
  display: flex;
  flex-direction: column;
}
.mk-sidebar.collapsed {
  transform: translateX(-100%);
}

.mk-main {
  flex: 1;
  padding: 1.5rem;
  margin-left: 280px;
  transition: margin-left 200ms cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 100%;
  box-sizing: border-box;
  background-color: #FAF8F6;
  display: flex;
  flex-direction: column;
}

.sidebar-collapsed .mk-main {
  margin-left: 0;
}

@media (max-width: 767px) {
  .mk-sidebar {
    width: 280px;
    transform: translateX(-100%);
  }
  .mk-sidebar.open {
    transform: translateX(0);
  }
  .mk-main {
    margin-left: 0 !important;
    padding: 1rem;
  }
  .mk-sidebar-overlay {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 140;
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1), visibility 200ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .mk-sidebar-overlay.show {
    opacity: 1;
    visibility: visible;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .mk-sidebar {
    width: 240px;
  }
  .mk-sidebar.collapsed {
    transform: translateX(-100%);
  }
  .mk-main {
    margin-left: 240px;
  }
  .sidebar-collapsed .mk-main {
    margin-left: 0;
  }
}
.mk-sidebar-brand {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mk-sidebar-brand .brand-logo {
  width: 40px;
  height: 40px;
  background: #C17F59;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  color: white;
  box-shadow: 0 4px 6px -1px rgba(44, 24, 16, 0.1), 0 2px 4px -1px rgba(44, 24, 16, 0.06);
}
.mk-sidebar-brand .brand-text {
  display: flex;
  flex-direction: column;
}
.mk-sidebar-brand .brand-text .brand-title {
  color: #ffffff;
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
}
.mk-sidebar-brand .brand-text .brand-subtitle {
  color: #E8D5C9;
  font-size: 0.75rem;
}

.mk-sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 0;
}
.mk-sidebar-nav .mud-nav-menu {
  padding: 0;
}
.mk-sidebar-nav .mud-nav-group-title {
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #B8A89C !important;
  margin-top: 1rem;
}
.mk-sidebar-nav .mud-nav-link {
  margin: 2px 0.5rem;
  border-radius: 0.5rem;
  color: #D4C4B8 !important;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.875rem !important;
}
.mk-sidebar-nav .mud-nav-link .mud-nav-link-icon {
  color: #D4A078 !important;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mk-sidebar-nav .mud-nav-link:hover {
  background-color: rgba(255, 255, 255, 0.06) !important;
  color: #ffffff !important;
}
.mk-sidebar-nav .mud-nav-link:hover .mud-nav-link-icon {
  color: #ffffff !important;
}
.mk-sidebar-nav .mud-nav-link.active {
  background-color: rgba(193, 127, 89, 0.15) !important;
  color: #ffffff !important;
  font-weight: 600;
  border-left: 3px solid #C17F59;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.mk-sidebar-nav .mud-nav-link.active .mud-nav-link-icon {
  color: #C17F59 !important;
}
.mk-sidebar-nav .mud-nav-group .mud-collapse-container {
  padding-left: 0.5rem;
}

.mk-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background-color: #ffffff;
  border-bottom: 1px solid #E8E0D8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  z-index: 200;
  box-shadow: 0 1px 2px 0 rgba(44, 24, 16, 0.05);
}

.mk-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mk-header-hamburger {
  color: #2C1810;
  cursor: pointer;
}
.mk-header-hamburger:hover {
  color: #C17F59;
}

.mk-header-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 700;
  color: #2C1810;
  margin: 0;
  font-size: 1.25rem;
}
@media (max-width: 600px) {
  .mk-header-title {
    font-size: 1.125rem;
  }
}

.mk-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mk-header-search {
  width: 260px;
}
@media (max-width: 767px) {
  .mk-header-search {
    display: none;
  }
}

.mk-user-profile-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  padding: 4px 0.5rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mk-user-profile-btn:hover {
  background-color: #F5F0EB;
}
.mk-user-profile-btn .user-name {
  font-weight: 500;
  color: #2C1810;
  font-size: 0.875rem;
}
@media (max-width: 640px) {
  .mk-user-profile-btn .user-name {
    display: none;
  }
}

@media (max-width: 600px) {
  .mk-dashboard-header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1rem;
  }
  .mk-dashboard-header .mk-button {
    width: 100% !important;
  }
}

.mk-drawer-transition {
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1), width 200ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.mk-drawer-toggle {
  transition: transform 0.2s ease-in-out !important;
}
.mk-drawer-toggle:active {
  transform: scale(0.95);
}

.mk-nav-logo {
  max-width: 120px;
  height: auto;
  object-fit: contain;
}

.mk-header-logo {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

.mk-footer {
  background-color: #2C1810;
  color: #ffffff;
  padding: 1.5rem 0;
  margin-top: auto;
  border-top: 1px solid #E8E0D8;
  width: 100%;
}

.mk-footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 1.5rem;
}

.mk-footer-brand {
  display: flex;
  justify-content: center;
}

.mk-footer-logo {
  max-width: 80px;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
}

.mk-footer-text {
  font-size: 0.875rem;
  opacity: 0.8;
  text-align: center;
}

.mk-footer-links {
  display: flex;
  gap: 1.5rem;
}
.mk-footer-links .mud-link {
  color: #ffffff !important;
  opacity: 0.8;
  font-size: 0.875rem;
  transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.mk-footer-links .mud-link:hover {
  opacity: 1;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .mk-footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
  .mk-footer-brand {
    order: 1;
  }
  .mk-footer-text {
    order: 2;
  }
  .mk-footer-links {
    order: 3;
  }
}
.mk-calendar-card {
  margin-bottom: 1.5rem;
}
.mk-calendar-card .mk-card-body {
  padding: 0 !important;
}

.mk-calendar-wrapper {
  background-color: #ffffff;
  border-radius: 0 0 0.75rem 0.75rem;
  overflow: hidden;
}

.mk-calendar-month-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 1px solid #E8E0D8;
}
@media (max-width: 768px) {
  .mk-calendar-month-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.mk-calendar-month-header-cell {
  background-color: #F5F0EB;
  padding: 0.5rem 0.25rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: #5C4E42;
  border-bottom: 1px solid #E8E0D8;
  border-right: 1px solid #E8E0D8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mk-calendar-month-header-cell:last-child {
  border-right: none;
}
@media (max-width: 768px) {
  .mk-calendar-month-header-cell {
    display: none;
  }
}

.mk-calendar-day-cell {
  min-height: 120px;
  padding: 0.5rem;
  border-bottom: 1px solid #E8E0D8;
  border-right: 1px solid #E8E0D8;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mk-calendar-day-cell:nth-child(7n) {
  border-right: none;
}
.mk-calendar-day-cell.mk-calendar-day-hover {
  background-color: #E8D5C9 !important;
  box-shadow: inset 0 0 0 2px #C17F59;
}

.mk-calendar-day-outside {
  background-color: #FAF8F6;
}
.mk-calendar-day-outside .mk-calendar-day-number {
  color: #B8A89C;
}

.mk-calendar-day-today {
  background-color: rgba(193, 127, 89, 0.03);
}
.mk-calendar-day-today .mk-calendar-day-number {
  background-color: #C17F59;
  color: #ffffff;
  border-radius: 9999px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.mk-calendar-day-number {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2C1810;
}

.mk-calendar-week-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 1px solid #E8E0D8;
  min-height: 400px;
}
@media (max-width: 1024px) {
  .mk-calendar-week-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .mk-calendar-week-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.mk-calendar-week-column {
  border-right: 1px solid #E8E0D8;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mk-calendar-week-column:last-child {
  border-right: none;
}
.mk-calendar-week-column.mk-calendar-week-hover {
  background-color: #E8D5C9 !important;
  outline: 2px solid #C17F59;
}
.mk-calendar-week-column.mk-calendar-week-today {
  background-color: rgba(193, 127, 89, 0.02);
}
.mk-calendar-week-column.mk-calendar-week-today .mk-calendar-week-header {
  background-color: rgba(193, 127, 89, 0.05);
  border-bottom: 2px solid #C17F59;
}

.mk-calendar-week-header {
  background-color: #F5F0EB;
  border-bottom: 1px solid #E8E0D8;
}

.mk-calendar-week-content {
  flex-grow: 1;
  overflow-y: auto;
  min-height: 200px;
}

.mk-calendar-day-timeline {
  display: flex;
  flex-direction: column;
}

.mk-calendar-timeline-body {
  display: flex;
  flex-direction: column;
}

.mk-calendar-timeline-row {
  display: flex;
  border-bottom: 1px solid #E8E0D8;
  min-height: 70px;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mk-calendar-timeline-row.mk-calendar-timeline-row-hover {
  background-color: #E8D5C9 !important;
  outline: 2px solid #C17F59;
}

.mk-calendar-timeline-unscheduled {
  background-color: #FAF8F6;
  border-bottom: 2px solid #E8E0D8;
}
.mk-calendar-timeline-unscheduled .mk-calendar-timeline-time {
  font-weight: 700;
  color: #A5653D;
}

.mk-calendar-timeline-time {
  width: 100px;
  padding: 1rem;
  font-weight: 600;
  color: #7A6A5C;
  border-right: 1px solid #E8E0D8;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FAF8F6;
  flex-shrink: 0;
}

.mk-calendar-timeline-content {
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.mk-calendar-day-items {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.5rem;
  flex-grow: 1;
  overflow-y: auto;
  max-height: 180px;
}

.mk-calendar-item-card {
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  background-color: #ffffff;
  border: 1px solid #E8E0D8;
  box-shadow: 0 1px 2px 0 rgba(44, 24, 16, 0.05);
  cursor: grab;
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}
.mk-calendar-item-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(44, 24, 16, 0.1), 0 2px 4px -1px rgba(44, 24, 16, 0.06);
}
.mk-calendar-item-card:active {
  cursor: grabbing;
}
.mk-calendar-item-card .mk-calendar-item-title {
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mk-calendar-item-card .mk-calendar-item-subtitle {
  font-size: 10px;
  color: #7A6A5C;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mk-calendar-item-card .mk-calendar-item-badge {
  display: inline-block;
  padding: 1px 4px;
  border-radius: 0.25rem;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 2px;
}

.mk-item-success {
  border-left: 3px solid #4CAF50 !important;
  background-color: #E8F5E9 !important;
  color: rgb(52.8366533865, 121.6633466135, 55.6175298805);
}
.mk-item-success .mk-calendar-item-badge {
  background-color: #4CAF50;
  color: #ffffff;
}

.mk-item-warning {
  border-left: 3px solid #FF9800 !important;
  background-color: #FFF3E0 !important;
  color: rgb(178.5, 106.4, 0);
}
.mk-item-warning .mk-calendar-item-badge {
  background-color: #FF9800;
  color: #ffffff;
}

.mk-item-error {
  border-left: 3px solid #F44336 !important;
  background-color: #FFEBEE !important;
  color: rgb(210.0070754717, 25.0754716981, 11.4929245283);
}
.mk-item-error .mk-calendar-item-badge {
  background-color: #F44336;
  color: #ffffff;
}

.mk-item-info {
  border-left: 3px solid #2196F3 !important;
  background-color: #E3F2FD !important;
  color: rgb(10.2307692308, 109.9807692308, 189.2692307692);
}
.mk-item-info .mk-calendar-item-badge {
  background-color: #2196F3;
  color: #ffffff;
}

.mk-calendar-workload-indicator {
  display: flex;
  align-items: center;
}

.mk-calendar-workload-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
}

.mk-calendar-workload-bar {
  width: 100%;
  height: 4px;
  background-color: #E8E0D8;
  border-radius: 9999px;
  overflow: hidden;
}

.mk-calendar-workload-fill {
  height: 100%;
  border-radius: 9999px;
  transition: width 0.3s ease;
}

.mk-calendar-empty-cell {
  background-color: #FAF8F6;
  border: 1px dashed #D4C4B8;
  border-radius: 0.5rem;
}

.mk-auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #E8D5C9 0%, #FAF8F6 100%);
  padding: 1rem;
}

.mk-auth-card {
  max-width: 440px;
  width: 100%;
  border-radius: 0.75rem !important;
  box-shadow: 0 10px 15px -3px rgba(44, 24, 16, 0.1), 0 4px 6px -2px rgba(44, 24, 16, 0.05) !important;
  background-color: #ffffff !important;
  border: 1px solid #E8E0D8;
  overflow: hidden;
}

.mk-auth-header {
  text-align: center;
  padding: 2rem 1.5rem 1rem 1.5rem;
}
.mk-auth-header .mk-logo-container {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}
.mk-auth-header .mk-logo-container .mk-auth-logo {
  max-width: 120px;
  height: auto;
  object-fit: contain;
}
.mk-auth-header .mk-auth-title {
  font-family: "Georgia", "Times New Roman", serif;
  color: #2C1810;
  font-weight: 700;
  font-size: 1.875rem;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}
.mk-auth-header .mk-auth-subtitle {
  color: #9C8A7C;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.mk-auth-body {
  padding: 0 1.5rem 2rem 1.5rem;
}

.mk-auth-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.mk-auth-actions .mk-auth-forgot-link {
  font-size: 0.875rem;
  color: #C17F59 !important;
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mk-auth-actions .mk-auth-forgot-link:hover {
  color: #A5653D !important;
  text-decoration: underline;
}

.mk-auth-footer {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}
.mk-auth-footer .mk-auth-footer-link {
  font-size: 0.875rem;
  color: #2C1810 !important;
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mk-auth-footer .mk-auth-footer-link:hover {
  color: #C17F59 !important;
  text-decoration: underline;
}

/*# sourceMappingURL=design-system.css.map */
