/* Modern Bootstrap Stylesheet
 * Provides a clean, minimalist design override with angular design
 * Recommended to be imported after the main Bootstrap CSS
 */

 :root {
    /* Color Palette */
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --text-color: #333;
    --light-background: #f8f9fa;
    --border-color: #e0e0e0;
}

/* Global Resets and Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-background);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

/* Buttons */
.btn {
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    /*padding: 0.575rem 1.25rem;*/  
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Cards */
.card {
    border: 1px solid var(--border-color);
    border-radius: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.card:has(.dropdown-menu.show) {
    transform: none !important;
}

.card-header {
    background-color: transparent;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
    border-radius: 0;
}

/* Forms */
.form-control {
    border-radius: 0;
    border-color: var(--border-color);
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

/* Navbar */
.navbar {
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-weight: 700;
    color: var(--text-color);
}

/* Alerts */
.alert {
    border-radius: 0;
    padding: 1rem 1.5rem;
}

/* Badges */
.badge {
    border-radius: 0;
    font-weight: 500;
    padding: 0.35em 0.65em;
}

/* Utilities */
.shadow-sm {
    box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important;
}

.shadow-md {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1) !important;
}

/* Removed rounded-lg utility */

/* Responsive Typography */
@media (max-width: 768px) {
    body {
        font-size: 0.95rem;
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.4rem; }
}

/* Print Styles */
@media print {
    body {
        font-size: 12pt;
    }
}

/* Accessibility Improvements */
a:focus, button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}