@charset "UTF-8";
/* CSS Document */
/* Base Styles */

/* Text Colors and Typography */
.text-black {
    color: #000;
}

.text-dark {
    color: #333;
}

.text-primary {
    color: #CA5A00;
}

.text-uppercase {
    text-transform: uppercase;
}

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

/* Box and Element Positioning */
.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

/* Rounded Corners */
.rounded {
    border-radius: 8px;
}

/* Utility Classes */
.mb-0 {
    margin-bottom: 0;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

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

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

.p-1 {
    padding: 0.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.pt-3 {
    padding-top: 1rem;
}

