/* Global CSS Variables */
:root {
  --primary-color: #4285f4;
  --primary-dark: #1a73e8;
  --secondary-color: #34a853;
  --accent-yellow: #fbbd04;
  --accent-red: #c5221f6b;

  --background-light: #ffffff;
  --background-off: #f8f9fa;
  --background-grey-blue: #f8f9fa;
  
  --border-light: #dadce0;
  --border-dark: #212121;
  --border-radius-sm: 6px;
  --border-radius-md: 10px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  
  --text-primary: #212121;
  --text-secondary: #5f6368;
  --font-feature: 'Georgia', serif;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --transition: all .6s ease;
  --transition-quick: transform 0.2s ease, box-shadow 0.2s ease;


}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background-color: #f5f5f5;
}

html {
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

.content {
    margin-top: 5rem;
    padding: 0px;
    padding-bottom: 80px; /* reserve space above footer to prevent overlap */
    max-width: 1200px;  /* Prevent content from stretching too wide */
    margin-left: auto;
    margin-right: auto;
    width: 100%;  /* Ensure full width utilization */
}

/* Responsive adjustments */
@media screen and (max-width: 1200px) {
    .content {
        padding: 0 20px;  /* Add padding when constrained */
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 768px) {
    .content {
        padding: 0 15px;
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 480px) {
    .content {
        padding: 0 10px;
        padding-bottom: 80px;
    }
}