:root {
    --primary-color: #0a4d8c;
    --primary-dark: #083b6f;
    --secondary-color: #5a6b7e;
    --success-color: #2e8540;
    --danger-color: #d83933;
    --warning-color: #ffbe2e;
    --info-color: #02bfe7;
    --light-bg: #f5f8fa;
    --card-bg: #ffffff;
    --text-dark: #1c2d41;
    --text-light: #5a6b7e;
    --border-color: #dce6f0;
    --accent-color: #f7941d;
}

body {
    padding-top: 60px;
    padding-bottom: 20px;
    background-color: var(--light-bg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.responsive-container {
    padding: 1rem;
    width: 100%;
    margin: 0 auto;
}

/* Responsive container widths */
@media (min-width: 640px) {
    .responsive-container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .responsive-container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .responsive-container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .responsive-container {
        max-width: 1280px;
    }
}

.footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 2rem;
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    border: none;
    background-color: var(--primary-color);
    color: white;
}

.btn-primary-light {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    border: none;
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-primary-light:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-danger {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    border: none;
    background-color: var(--danger-color);
    color: white;
}

.btn-danger-light {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    border: none;
    background-color: var(--danger-color);
    color: white;
}

.btn-danger:hover {
    background-color: #b72c27;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-danger-light:hover {
    background-color: #b72c27;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Card Styles */
.card {
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.card-header {
    padding: 1rem;
    background-color: rgba(241, 245, 249, 0.5);
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
    color: var(--text-dark);
}

.card-body {
    padding: 1.5rem;
}

/* Text colors */
.text-primary {
    color: var(--primary-color);
}

.text-primary-dark {
    color: var(--primary-dark);
}

.text-accent {
    color: var(--accent-color);
}

.text-success {
    color: var(--success-color);
}

.text-danger {
    color: var(--danger-color);
}

/* Alert Styles */
.alert {
    position: relative;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    border: 1px solid transparent;
    border-radius: 0.5rem;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
} 

.gap-2 {
    gap: 0.25rem;
}

.gap-4 {
    gap: 0.5rem;
}

.inline-flex {
    display: inline-flex;
}

.items-center {
    align-items: center;
}


.grid {
    display: grid;
}

.grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.col-span-10 {
    grid-column: span 10 / span 10;
}

.col-span-2 {
    grid-column: span 2 / span 2;
}
