/**
 * Utilities Styles
 * Utility classes, helper styles, and print styles
 */

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.accent-color {
    color: #b71c1c;
}

.text-muted {
    color: #666666;
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer {
        display: none;
    }
}