/* ============================================
   Legacy Property Management - Main Stylesheet
   ============================================ */

:root {
  --color-primary: #0033A0;
  --color-primary-600: #00226A;
  --color-secondary: #E50914;
  --color-accent: #FFD700;
  --color-background: #F3F4F6;
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-danger: #EF4444;
  --color-info: #3B82F6;
  --color-muted: #6B7280;
  --color-border: #E5E7EB;
  --color-surface: #FFFFFF;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

/* ============================================
   Base Styles
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #333;
  background: linear-gradient(180deg, #ffffff 0%, var(--color-background) 100%);
  line-height: 1.6;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1F2937;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: #4B5563;
}

.welcome-header { color: #fff; }
.welcome-header h1, .welcome-header h2, .welcome-header h3, .welcome-header p { color: #fff; }

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

a:hover {
  color: var(--color-primary);
}

/* Ensure white text on blue sections */
[style*="background-color:#0033A0"], [style*="background-color: #0033A0"] { color:#fff !important; }
[style*="background-color:#0033A0"] h1,
[style*="background-color:#0033A0"] h2,
[style*="background-color:#0033A0"] h3,
[style*="background-color:#0033A0"] h4,
[style*="background-color:#0033A0"] h5,
[style*="background-color:#0033A0"] h6,
[style*="background-color:#0033A0"] p,
[style*="background-color:#0033A0"] a:not(.btn-light),
[style*="background-color:#0033A0"] .btn:not(.btn-light) { color:#fff !important; }

.welcome-header,
.welcome-header h1,
.welcome-header p,
.hero,
.hero .title,
.hero .subtitle,
.hero-landing,
.hero-landing .title,
.hero-landing .subtitle { color:#fff !important; }

.btn-light {
  background: #ffffff !important;
  color: #0033A0 !important;
  border: 2px solid #0033A0 !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  padding: 0.5rem 1.5rem !important;
  transition: all 0.3s ease !important;
}

.btn-light:hover {
  background: #f0f4ff !important;
  color: #0033A0 !important;
  text-decoration: none !important;
}

/* ============================================
   Layout
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-sm {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-lg {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 2rem 0;
}

.section-lg {
  padding: 4rem 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: -0.5rem;
}

.col {
  flex: 1;
  min-width: 250px;
  padding: 0.5rem;
}

.col-1 { flex: 0 0 calc(8.333% - 1rem); }
.col-2 { flex: 0 0 calc(16.666% - 1rem); }
.col-3 { flex: 0 0 calc(25% - 1rem); }
.col-4 { flex: 0 0 calc(33.333% - 1rem); }
.col-5 { flex: 0 0 calc(41.666% - 1rem); }
.col-6 { flex: 0 0 calc(50% - 1rem); }
.col-7 { flex: 0 0 calc(58.333% - 1rem); }
.col-8 { flex: 0 0 calc(66.666% - 1rem); }
.col-9 { flex: 0 0 calc(75% - 1rem); }
.col-10 { flex: 0 0 calc(83.333% - 1rem); }
.col-11 { flex: 0 0 calc(91.666% - 1rem); }
.col-12 { flex: 0 0 calc(100% - 1rem); }

.grid {
  display: grid;
  gap: 1rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .col-6, .col-8, .col-9, .col-10, .col-11, .col-12 { flex: 0 0 calc(100% - 1rem); }
}

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
}

.nav-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  min-height: 56px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav .brand {
  font-weight: 800;
  color: var(--color-secondary);
  letter-spacing: 0.2px;
  font-size: 1.1rem;
  text-decoration: none;
}

.nav a {
  color: var(--color-secondary);
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.nav a:hover {
  background: var(--color-primary);
  color: #fff;
}

.nav a.active,
.nav a.highlight {
  background-color: var(--color-primary);
  color: #fff;
}

.nav a.highlight:hover {
  background-color: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.spacer {
  flex: 1;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  cursor: pointer;
  background: #fff;
  transition: var(--transition);
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
}

.btn:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: transparent;
}

.btn-primary:hover {
  background: var(--color-primary-600);
}

.btn-secondary {
  background: var(--color-secondary);
  color: #fff;
  border-color: transparent;
}

.btn-secondary:hover {
  background: #CC0812;
}

.btn-success {
  background: var(--color-success);
  color: #fff;
  border-color: transparent;
}

.btn-success:hover {
  background: #059669;
}

.btn-warning {
  background: var(--color-warning);
  color: #fff;
  border-color: transparent;
}

.btn-warning:hover {
  background: #D97706;
}

.btn-danger {
  background: var(--color-danger);
  color: #fff;
  border-color: transparent;
}

.btn-danger:hover {
  background: #DC2626;
}

.btn-info {
  background: var(--color-info);
  color: #fff;
  border-color: transparent;
}

.btn-info:hover {
  background: #2563EB;
}

.btn-outline-secondary-grey {
  background: transparent;
  border-color: var(--color-muted);
  color: var(--color-muted);
}

.btn-outline-secondary-grey:hover {
  background: var(--color-background);
  color: #333;
  border-color: #333;
}

.btn-outline {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-secondary);
}

.btn-outline:hover {
  background: var(--color-background);
}

.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: var(--color-accent);
}

.btn-ghost:hover {
  background: var(--color-background);
}

.btn-sm {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.9rem 1.5rem;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ============================================
   Cards
   ============================================ */

.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card-header {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.card-header h3 {
  margin: 0;
}

.card-body {
  margin-bottom: 1rem;
}

.card-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.card .actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* ============================================
   Forms
   ============================================ */

.form-group {
  margin-bottom: 1.5rem;
}

.field {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: var(--transition);
  font-size: 1rem;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(0, 51, 160, 0.1);
}

input:disabled,
select:disabled,
textarea:disabled {
  background: var(--color-background);
  cursor: not-allowed;
  opacity: 0.6;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input[type="checkbox"],
input[type="radio"] {
  width: auto;
  margin-right: 0.5rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 0.25rem;
}

.form-error {
  color: var(--color-danger);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.form-success {
  color: var(--color-success);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

/* ============================================
   Alerts & Messages
   ============================================ */

.alert {
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  border-left: 4px solid;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.alert-success {
  background: #ECFDF5;
  color: #065F46;
  border-color: var(--color-success);
}

.alert-danger {
  background: #FEF2F2;
  color: #7F1D1D;
  border-color: var(--color-danger);
}

.alert-warning {
  background: #FFFBEB;
  color: #78350F;
  border-color: var(--color-warning);
}

.alert-info {
  background: #EFF6FF;
  color: #0C2340;
  border-color: var(--color-info);
}

.flash {
  background: #fff3cd;
  color: #664d03;
  border: 1px solid #ffecb5;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  margin: 1rem 0;
}

/* ============================================
   Tables
   ============================================ */

.table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.table thead {
  background: var(--color-background);
  border-bottom: 2px solid var(--color-border);
}

.table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: #333;
}

.table td {
  padding: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.table tbody tr:hover {
  background: var(--color-background);
}

.table-striped tbody tr:nth-child(odd) {
  background: var(--color-background);
}

.table-sm th,
.table-sm td {
  padding: 0.75rem;
}

/* ============================================
   Badges
   ============================================ */

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.badge-primary {
  background: rgba(0, 51, 160, 0.1);
  color: var(--color-primary);
}

.badge-secondary {
  background: rgba(229, 9, 20, 0.1);
  color: var(--color-secondary);
}

.badge-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
}

.badge-warning {
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-warning);
}

.badge-danger {
  background: rgba(239, 68, 68, 0.1);
  color: var(--color-danger);
}

.badge-info {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--color-info);
}

/* ============================================
   Tabs
   ============================================ */

.tabs-container {
  background: var(--color-surface);
  margin: 1.5rem 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.nav-tabs-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 1rem;
  scrollbar-width: none;
}

.nav-tabs-scroll::-webkit-scrollbar {
  display: none;
}

.nav-tabs {
  display: flex;
  border: none;
  padding: 0;
  margin: 0;
  min-width: max-content;
  list-style: none;
}

.nav-item {
  margin: 0 0.25rem;
  position: relative;
}

/* ============================================
   Tab Navigation
   ============================================ */

/* Tab container */
.tabs-container {
  background: #fff;
  border-radius: 0.5rem 0.5rem 0 0;
  margin: 1.5rem 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Scrollable tabs container */
.nav-tabs-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 1rem;
}

.nav-tabs-scroll::-webkit-scrollbar {
  display: none;
}

/* Tabs list */
.nav-tabs {
  display: inline-flex;
  min-width: 100%;
  border-bottom: 1px solid #e0e2e7;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Tab item */
.nav-item {
  flex-shrink: 0;
  margin: 0 0.25rem;
  position: relative;
}

/* Tab link - base state */
.nav-link,
.nav-link:link,
.nav-link:visited {
  color: #6c757d;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  padding: 0.9rem 1.25rem;
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
  position: relative;
  z-index: 1;
}

/* Tab icon */
.nav-link i {
  font-size: 0.95em;
  margin-right: 0.5rem;
  width: 1.25em;
  text-align: center;
  transition: all 0.2s ease;
}

/* Hover state */
.nav-link:hover,
.nav-link:focus {
  color: #fff !important;
  background: #0056b3 !important;
  border-bottom-color: transparent !important;
  box-shadow: 0 4px 8px rgba(0, 86, 179, 0.2);
  transform: translateY(-1px);
}

.nav-link:hover i,
.nav-link:focus i {
  color: #fff !important;
  transform: scale(1.1);
}

/* Active state */
.nav-link.active,
.nav-link.active:link,
.nav-link.active:visited,
.nav-link.active:hover,
.nav-link.active:focus {
  color: var(--color-primary) !important;
  background: #fff !important;
  border-bottom: 3px solid var(--color-primary) !important;
  font-weight: 600;
  box-shadow: none;
  transform: none;
}

.nav-link.active i,
.nav-link.active:hover i {
  color: var(--color-primary) !important;
  transform: none;
}

/* Focus state for accessibility */
.nav-link:focus {
  outline: 2px solid rgba(0, 123, 255, 0.5);
  outline-offset: 2px;
  z-index: 2;
}

/* Mobile styles */
@media (max-width: 767.98px) {
  .nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  .nav-link i {
    margin-right: 0.4rem;
    font-size: 0.9em;
  }
  
  .tabs-container {
    margin: 1rem 0;
    border-radius: 0;
  }
}

/* Focus state for accessibility */
.nav-link:focus {
  outline: 2px solid rgba(0, 123, 255, 0.5);
  outline-offset: 2px;
  z-index: 1;
}

/* Mobile styles */
@media (max-width: 767.98px) {
  .tabs-container {
    border-radius: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin: 1rem 0;
  }
  
  .nav-tabs-scroll {
    padding: 0 0.5rem;
  }
  
  .nav-link {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}

/* ============================================
   Utilities
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

.text-muted { color: var(--color-muted); }
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-success { color: var(--color-success); }
.text-warning { color: var(--color-warning); }
.text-danger { color: var(--color-danger); }
.text-info { color: var(--color-info); }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-normal { font-weight: 400; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 2rem; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }
.gap-5 { gap: 2rem; }

.hidden { display: none; }
.block { display: block; }
.inline { display: inline; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }

.w-full { width: 100%; }
.w-half { width: 50%; }
.w-third { width: 33.333%; }
.w-two-thirds { width: 66.666%; }
.w-quarter { width: 25%; }
.w-three-quarters { width: 75%; }

.h-full { height: 100%; }
.h-screen { height: 100vh; }

.rounded { border-radius: var(--radius-sm); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: 9999px; }

.shadow { box-shadow: var(--shadow-sm); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-none { box-shadow: none; }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }

.no-wrap { white-space: nowrap; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ============================================
   Hero Section
   ============================================ */

.hero {
  padding: 2rem 0;
}

.hero .title {
  font-size: 1.75rem;
  margin: 0.25rem 0;
  color: #FFFFFF;
}

.hero .subtitle {
  color: #FFFFFF;
  font-size: 1.1rem;
}

.hero-landing {
  position: relative;
  min-height: 40vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 1rem 0;
}

.hero-landing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55)), url('/assets/images/hero.jpg') center/cover no-repeat;
  filter: saturate(115%);
}

.hero-landing .hero-inner {
  position: relative;
  color: #fff;
  padding: 3rem 2rem;
}

.hero-landing .title {
  color: #fff;
  font-size: 2.15rem;
}

.hero-landing .subtitle {
  color: #e5e7eb;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  padding: 2.75rem 0;
  color: var(--color-muted);
  border-top: 1px solid var(--color-border);
  background: var(--color-background);
  margin-top: 3rem;
}

.footer .links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0.5rem 0;
}

.footer .links a {
  color: var(--color-muted);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.footer .links a:hover {
  background: #f3f4f6;
  color: var(--color-secondary);
}

/* ============================================
   Lists
   ============================================ */

.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list li {
  padding: 0.4rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.list li:last-child {
  border-bottom: none;
}

/* ============================================
   Empty States
   ============================================ */

.empty {
  padding: 2rem;
  text-align: center;
  color: var(--color-muted);
}

.empty i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

/* ============================================
   Loading & Spinners
   ============================================ */

.spinner {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  .container {
    padding: 0 1rem;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 1.5rem 0;
  }
  
  .section-lg {
    padding: 2rem 0;
  }
  
  .hero-landing {
    min-height: 30vh;
  }
  
  .hero-landing .title {
    font-size: 1.5rem;
  }
  
  .nav-inner {
    flex-wrap: wrap;
  }
  
  .table {
    font-size: 0.9rem;
  }
  
  .table th,
  .table td {
    padding: 0.75rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.1rem; }
  
  .container {
    padding: 0 0.75rem;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .card {
    padding: 1rem;
  }
  
  .hero-landing {
    min-height: 25vh;
  }
  
  .hero-landing .hero-inner {
    padding: 1.5rem 1rem;
  }
  
  .hero-landing .title {
    font-size: 1.25rem;
  }
}

/* ============================================
   Print Styles
   ============================================ */

@media print {
  .nav,
  .footer,
  .btn,
  .actions {
    display: none;
  }
  
  body {
    background: white;
  }
  
  .card {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}
