@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap);
:root {
  --primary-color: #406B7E;
  --secondary-color: #D36D48;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --success-color: #16a34a;
  --info-color: #0dcaf0;
  --text-color: #1e293b;
  --background-light: #f8fafc;
  --border-color: #e2e8f0;
  --border-radius: 8px;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --sidebar-width: 240px;
  --footer-height: 80px;
  --header-height: 64px;
  --spacing-unit: 1rem;
  --text-secondary: #64748b;
} 
/* src/styles/fonts.css */

/* Import Poppins font from Google Fonts */

/* Set Poppins as the default font for the entire application */
:root {
    --font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
}

/* Apply the font to the body and set base styling */
body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-regular);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Helper classes for font weight */
.font-light {
    font-weight: var(--font-weight-light);
}

.font-regular {
    font-weight: var(--font-weight-regular);
}

.font-medium {
    font-weight: var(--font-weight-medium);
}

.font-semibold {
    font-weight: var(--font-weight-semibold);
}

.font-bold {
    font-weight: var(--font-weight-bold);
}
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-center { justify-content: center; align-items: center; }
.inline-flex { display: inline-flex; }
.mt-1 { margin-top: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.text-center { text-align: center; }
.hidden { display: none !important; }
.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); } 
.button {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  border-radius: var(--border-radius);
  background: var(--primary-color);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.button--secondary { background: var(--secondary-color); }
.button--danger { background: var(--danger-color); }
.button:disabled { opacity: 0.6; cursor: not-allowed; } 
.card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}
.card--stat { /* Stat card specific styles */ }
.card--center { /* Center card specific styles */ } 
/* src/styles/main.css */
/* @import './self-hosted-fonts.css'; */

/* Global resets and base styles */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family);
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: var(--font-size-3xl);
}
h2 {
    font-size: var(--font-size-2xl);
}
h3 {
    font-size: var(--font-size-xl);
}

a {
    color: var(--primary-color);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

button, input, select, textarea {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
}

.container {
    width: calc(100% - var(--sidebar-width));
    margin-left: var(--sidebar-width);
    padding: 0 2rem;
    box-sizing: border-box;
}

#app {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding-top: 80px;
}

.page-wrapper {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

footer-element {
  flex-shrink: 0;
  width: 100%;
  margin-top: auto;
  display: block;
}

footer.footer {
  width: 100%;
  background: #fff;
  box-sizing: border-box;
  /* Remove any margin-top or position: absolute/fixed unless you want it always visible */
  margin-top: 0;
  position: static;
}

.content-wrapper {
  flex: 1 0 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1 0 auto;
  min-height: 0;
  padding-bottom: 24px;
}

/* Utility classes */
.text-center {
    text-align: center;
}
.mb-1 {
    margin-bottom: var(--spacing-unit);
}
.mb-2 {
    margin-bottom: calc(var(--spacing-unit) * 2);
}
.mt-1 {
    margin-top: var(--spacing-unit);
}
.mt-2 {
    margin-top: calc(var(--spacing-unit) * 2);
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
/* Button-specific overrides can go here if needed */ 
/* Component-specific styles only. Use shared utilities for spacing, color, and flex. */
.action-buttons {
  /* If you need a custom layout, otherwise use .flex and .gap-sm */
}
.icon-btn {
    padding: 0.5rem;
    border: none;
    background: none;
    color: var(--text-color);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
}
.icon-btn:hover:not(:disabled) {
    background: var(--background-light);
    color: var(--primary-color);
}
.icon-btn.delete-btn:hover {
    color: var(--danger-color);
}
.icon-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.icon {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}
.loading-indicator {
    padding: 2rem;
    text-align: center;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.spinner {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s cubic-bezier(0.17, 0.67, 0.83, 0.67) infinite;
    box-sizing: border-box;
    flex-shrink: 0;
    transform-origin: center center;
    will-change: transform;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.empty-state {
    padding: 2rem;
    text-align: center;
    color: #64748b;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.empty-icon {
    width: 3rem;
    height: 3rem;
    fill: #cbd5e1;
    margin-bottom: 1rem;
}
@media (max-width: 768px) {
    .users-table th,
    .users-table td {
        padding: 0.5rem;
    }
} 

/*# sourceMappingURL=main.ceb2bebd74db4b374e7a.css.map*/