/* Custom variables and styles */
:root {
    --bs-primary: #28696A;
    --bs-info: #00d6fe;
    --bs-warning: #efece7;
    --bs-font-size-base: 0.9rem;
}

body {
    display: flex;
    background-color: #f7f7f7;
    font-size: var(--bs-font-size-base);
}

/* Custom utility classes */
.text-green {
    color: var(--bs-primary) !important;
}

.bg-green {
    background-color: var(--bs-primary) !important;
}

.text-light-blue {
    color: var(--bs-info) !important;
}

.bg-light-blue {
    background-color: var(--bs-info) !important;
}
