html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* NYC Data Link Styles */
:root {
    --primary-color: #1565c0;
    --primary-hover: #1976d2;
    --text-dark: #333;
    --text-muted: #6c757d;
}

.logo-container {
    font-size: 1.5rem;
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.navbar-brand {
    padding: 0;
}

.navbar-brand:hover .logo-text {
    color: var(--primary-hover);
}

.navbar-brand:hover .logo-container i {
    color: var(--primary-hover) !important;
}

.nav-link {
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Card Styles */
.card {
    transition: transform 0.2s ease-in-out;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Footer Styles */
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

/* Typography */
.display-4 {
    color: var(--primary-color);
    font-weight: 600;
}

h2 {
    color: var(--text-dark);
    font-weight: 600;
}

.text-muted {
    color: var(--text-muted) !important;
}