/* ==================== MANAGEMENT PAGE STYLES ==================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-weight: 500;
  background: #0a0e1a;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)), url('../image8.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  min-height: 100vh;
  letter-spacing: 0.02em;
}

/* Loading State */
.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 16px;
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #334155;
  border-top-color: #6366f1;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Layout */
.main-app {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 240px;
  min-width: 240px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 100;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 16px;
}

.sidebar-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.sidebar-logo span {
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 12px;
  flex: 1;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-item:hover {
  background: rgba(99, 102, 241, 0.1);
  color: #e5e7eb;
}

.nav-item.active {
  background: rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
}

.nav-item svg {
  width: 20px;
  height: 20px;
}

.sidebar-bottom {
  padding: 0 12px;
  margin-top: auto;
}

.back-item {
  color: #6b7280;
}

.back-item:hover {
  color: #d1d5db;
}

/* Main Content */
.main-content {
  flex: 1;
  margin-left: 240px;
  display: flex;
  flex-direction: column;
}

/* Top Bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-title h1 {
  font-size: 1.4rem;
  font-weight: 700;
}

.page-title p {
  color: #6b7280;
  font-size: 0.85rem;
  margin-top: 2px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  background: rgba(30, 41, 59, 0.8);
  border-radius: 8px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
  padding: 6px 12px;
  background: transparent;
  border: none;
  color: #9ca3af;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
}

.lang-btn:hover {
  color: #fff;
}

.lang-btn.active {
  background: #6366f1;
  color: #fff;
}

.user-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  background-size: cover;
  background-position: center;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-weight: 600;
  font-size: 0.85rem;
}

.user-role {
  font-size: 0.7rem;
  color: #6b7280;
}

/* Page Content */
.page-content {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Balance Card */
.balance-card {
  display: flex;
  gap: 24px;
  background: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 12px;
  padding: 24px;
}

.balance-item {
  flex: 1;
  text-align: center;
}

.balance-label {
  display: block;
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.balance-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #a5b4fc;
}

.balance-value.used {
  color: #f87171;
}

.balance-value.remaining {
  color: #34d399;
}

.balance-value.carry-over {
  color: #fbbf24;
}

.balance-sub {
  display: block;
  font-size: 0.7rem;
  color: #6b7280;
  margin-top: 4px;
  font-weight: 400;
}

/* Form Card */
.form-card {
  background: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 24px;
}

.form-card h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #f3f4f6;
}

.form-description {
  color: #9ca3af;
  font-size: 0.85rem;
  margin-bottom: 20px;
  margin-top: -12px;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row .form-group {
  flex: 1;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  color: #d1d5db;
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #6366f1;
}

.form-group input.readonly,
.form-group textarea.readonly {
  background: rgba(15, 23, 42, 0.6);
  color: #9ca3af;
  cursor: not-allowed;
}

.form-hint {
  display: block;
  font-size: 0.75rem;
  color: #f59e0b;
  margin-top: 6px;
  font-weight: 400;
}

/* Half-day checkbox */
.half-day-group {
  padding-top: 4px;
}

.half-day-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 500;
}

.half-day-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #6366f1;
  cursor: pointer;
}

/* Toggle Group */
.toggle-group {
  display: flex;
  gap: 0;
  background: rgba(30, 41, 59, 0.8);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.toggle-btn {
  flex: 1;
  padding: 10px 16px;
  background: transparent;
  border: none;
  color: #9ca3af;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.toggle-btn.active {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
}

.toggle-btn:hover:not(.active) {
  background: rgba(99, 102, 241, 0.1);
  color: #e5e7eb;
}

/* Submit Button */
.submit-btn {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  font-family: inherit;
}

.submit-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Table Card */
.table-card {
  background: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 24px;
}

.table-card h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #f3f4f6;
}

.table-wrapper {
  overflow-x: auto;
}

/* Data Table */
.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.data-table td {
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #d1d5db;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.data-table tr:hover td {
  background: rgba(99, 102, 241, 0.05);
}

.no-data {
  text-align: center;
  color: #6b7280;
  padding: 32px;
  font-size: 0.85rem;
}

/* Status Badges */
.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-badge.pending {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}

.status-badge.approved {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.status-badge.rejected {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

/* Type Badge */
.type-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.type-badge.annual {
  background: rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
}

.type-badge.leave {
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
}

.type-badge.mc {
  background: rgba(234, 179, 8, 0.15);
  color: #fbbf24;
}

/* MC Upload */
.mc-upload-area {
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: rgba(30, 41, 59, 0.5);
}

.mc-upload-area:hover {
  border-color: rgba(99, 102, 241, 0.5);
  background: rgba(99, 102, 241, 0.05);
}

.mc-upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #9ca3af;
}

.mc-upload-placeholder svg {
  opacity: 0.5;
}

.mc-preview {
  max-width: 100%;
  max-height: 300px;
  border-radius: 8px;
  object-fit: contain;
}

.mc-image-link {
  color: #fbbf24;
  text-decoration: none;
  font-weight: 500;
}

.mc-image-link:hover {
  text-decoration: underline;
}

/* Success Message */
.success-message {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 8px;
  padding: 16px;
  margin-top: 16px;
  color: #4ade80;
  font-size: 0.9rem;
  text-align: center;
}

/* Locked Profile Message */
.locked-message {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
  color: #fbbf24;
  font-size: 0.85rem;
}

.locked-message svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  color: #f59e0b;
}

/* ============ PERFORMANCE ============ */

.perf-month-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.view-consequences-btn {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}

.view-consequences-btn:hover,
.view-deductions-btn:hover {
  filter: brightness(1.15);
}

.view-deductions-btn {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}

.mgmt-month-input {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff;
  font-size: 0.85rem;
  font-family: inherit;
}

.mgmt-month-input:focus {
  outline: none;
  border-color: #6366f1;
}

.perf-score-card .balance-value {
  font-size: 2rem;
}

.perf-score-color.tier-perfect { color: #4ade80; }
.perf-score-color.tier-great { color: #60a5fa; }
.perf-score-color.tier-good { color: #38bdf8; }
.perf-score-color.tier-average { color: #fbbf24; }
.perf-score-color.tier-bad { color: #fb923c; }
.perf-score-color.tier-very_bad { color: #f87171; }

.perf-tier-display {
  font-size: 1.3rem !important;
}

.perf-tier-display.tier-perfect { color: #4ade80; }
.perf-tier-display.tier-great { color: #60a5fa; }
.perf-tier-display.tier-good { color: #38bdf8; }
.perf-tier-display.tier-average { color: #fbbf24; }
.perf-tier-display.tier-bad { color: #fb923c; }
.perf-tier-display.tier-very_bad { color: #f87171; }

.perf-consequences-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.perf-consequence-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 8px;
  color: #f87171;
  font-size: 0.85rem;
  font-weight: 500;
}

.perf-consequence-item::before {
  content: '!';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.perf-consequence-good {
  padding: 10px 14px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 8px;
  color: #4ade80;
  font-size: 0.85rem;
  font-weight: 500;
}

.perf-no-consequences {
  padding: 10px 14px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 8px;
  color: #4ade80;
  font-size: 0.85rem;
  font-weight: 500;
}

.points-negative {
  color: #f87171;
  font-weight: 600;
}

.penalty-amount {
  color: #fbbf24;
  font-weight: 600;
}

/* Deduction items */
.deduction-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid #334155;
  border-radius: 10px;
  transition: background 0.15s;
}

.deduction-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.deduction-label {
  font-size: 0.9rem;
  color: #e2e8f0;
}

.deduction-points {
  font-weight: 700;
  font-size: 0.95rem;
  padding: 4px 12px;
  border-radius: 20px;
}

.deduction-points.points-low {
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
}

.deduction-points.points-medium {
  background: rgba(249, 115, 22, 0.12);
  color: #fb923c;
}

.deduction-points.points-high {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
}

.deduction-points.points-severe {
  background: rgba(220, 38, 38, 0.15);
  color: #ef4444;
}

.deduction-auto-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  margin-left: 6px;
  vertical-align: middle;
}

/* Consequences Modal */
.consequences-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.consequences-modal {
  background: #1e293b;
  border-radius: 20px;
  width: 500px;
  max-width: 90vw;
  max-height: 80vh;
  overflow-y: auto;
  border: 1px solid #334155;
}

.consequences-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #334155;
}

.consequences-modal-header h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0;
}

.consequences-modal-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.consequence-tier {
  border: 1px solid #334155;
  border-radius: 12px;
  overflow: hidden;
}

.consequence-tier-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  font-weight: 600;
}

.consequence-tier-header.tier-perfect {
  background: rgba(34, 197, 94, 0.1);
  color: #4ade80;
}

.consequence-tier-header.tier-great {
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
}

.consequence-tier-header.tier-good {
  background: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
}

.consequence-tier-header.tier-average {
  background: rgba(245, 158, 11, 0.1);
  color: #fbbf24;
}

.consequence-tier-header.tier-bad {
  background: rgba(249, 115, 22, 0.1);
  color: #fb923c;
}

.consequence-tier-header.tier-very_bad {
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
}

.consequence-tier-name {
  font-size: 0.95rem;
}

.consequence-tier-range {
  font-size: 0.8rem;
  opacity: 0.7;
}

.consequence-list {
  list-style: none;
  padding: 12px 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.consequence-list li {
  font-size: 0.85rem;
  padding: 4px 0;
  padding-left: 22px;
  position: relative;
}

.consequence-list li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
}

.consequence-positive {
  color: #4ade80;
}

.consequence-positive::before {
  content: '+';
}

.consequence-negative {
  color: #f87171;
}

.consequence-negative::before {
  content: '−';
}

.consequence-neutral {
  color: #94a3b8;
  font-style: italic;
}

.consequence-neutral::before {
  content: '—';
}

/* ============ SALARY SLIPS ============ */

.action-btn-sm {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.salary-view-btn {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
}

.salary-view-btn:hover {
  filter: brightness(1.15);
}

.salary-download-btn {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
}

.salary-download-btn:hover {
  filter: brightness(1.15);
}

.status-badge.signed {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

/* PDF Viewer Modal */
.pdf-viewer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.pdf-viewer-modal {
  background: #1e293b;
  border-radius: 16px;
  width: 90vw;
  max-width: 700px;
  height: 90vh;
  display: flex;
  flex-direction: column;
  border: 1px solid #334155;
  overflow: hidden;
}

.pdf-viewer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #334155;
}

.pdf-viewer-header h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0;
}

.pdf-viewer-body {
  flex: 1;
  overflow: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #0f172a;
  padding: 16px;
  min-height: 0;
}

.pdf-viewer-body canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

.pdf-viewer-footer {
  padding: 16px 24px;
  border-top: 1px solid #334155;
}

.pdf-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.pdf-nav-btn {
  padding: 6px 16px;
  background: rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
}

.pdf-nav-btn:hover {
  background: rgba(99, 102, 241, 0.25);
}

#pdfPageInfo {
  color: #9ca3af;
  font-size: 0.85rem;
}

.signature-section {
  text-align: center;
}

.signature-section p {
  color: #9ca3af;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

#signatureCanvas {
  border: 2px dashed rgba(99, 102, 241, 0.4);
  border-radius: 8px;
  cursor: crosshair;
  background: #fff;
  max-width: 100%;
  touch-action: none;
}

.signature-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.sig-btn {
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.sig-clear {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.sig-clear:hover {
  background: rgba(239, 68, 68, 0.25);
}

.sig-submit {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
}

.sig-submit:hover {
  filter: brightness(1.15);
}

/* Notification */
@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
