/* base/utilities.css */
main.main-content {
    position: relative;
    padding-bottom: 5rem;
}
/* Accessibility */
.sr-only {
    clip: rect(0, 0, 0, 0);
    border-width: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

/* Text alignment */
.text-left {
    text-align: left;
}

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

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

/* Text color */
.text-red {
    color: red;
}

/* Margin */
.mt-0 {
    margin-top: 0;
}
.mt-05 {
    margin-top: 0.5rem;
}
.mb-0 {
    margin-bottom: 0;
}
.mb-05 {
    margin-bottom: 0.5rem;
}
.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Display */
.d-none {
    display: none !important;
}

/* Underline */
.underline {
    border-bottom: 2px solid var(--secondary-color);
}
