
body {
    font-family: Arial, sans-serif;
    margin: 0;

    background-color: #1e1e2f;
    color: #f5f6fa;
}
.sidebar {
    width: 200px;
    background: #111;
    padding: 20px;
    height: 100vh;
}
.sidebar-wrapper h2 {
    color: #f39c12;
}
.sidebar-wrapper ul {
    list-style: none;
    padding: 0;
}
.sidebar-wrapper li {
    margin: 20px 0;
}
.sidebar-wrapper a {
    text-decoration: none;
    color: #f5f6fa;
}
.main-content {
    flex-grow: 1;
}
.navbar {
    padding: 15px;
    background: #2c2c3c;
}
.card {
    margin: 20px;
    padding: 20px;
    background: #2f2f3f;
    border-radius: 8px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

th, td {
    padding: 10px;
    text-align: left;
}
thead {
    background-color: #444;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.flash-green {
  animation: flashGreen 0.6s ease-in-out;
}
.flash-red {
  animation: flashRed 0.6s ease-in-out;
}

@keyframes flashGreen {
  0% { background-color: #1f1f2f; }
  50% { background-color: #34d399; }
  100% { background-color: #1f1f2f; }
}

@keyframes flashRed {
  0% { background-color: #1f1f2f; }
  50% { background-color: #f87171; }
  100% { background-color: #1f1f2f; }
}

@keyframes flash-glow {
  0%   { background-color: #facc15; }
  100% { background-color: transparent; }
}
.flash-glow {
  animation: flash-glow 1s ease-out;
}

@keyframes move-glow {
  0% { box-shadow: 0 0 0px rgba(255, 255, 0, 0); }
  50% { box-shadow: 0 0 20px rgba(255, 255, 0, 0.6); }
  100% { box-shadow: 0 0 0px rgba(255, 255, 0, 0); }
}

.row-flash {
  animation: move-glow 0.6s ease-in-out;
}