﻿.red {
    color: red
}

.green {
    color: forestgreen;
}

.page {
    border: 1px solid gray;
    padding: 1rem 5rem;
}

/** Width styles **/
.w-50 {
    width: 50% !important;
}

.w-100 {
    width: 100% !important;
}

.halfwidth {
    width: 45%;
}

/** Text styles **/
.text-dark {
    color: #343a40;
}

.text-muted {
    color: #6c757d; /* You can adjust the color value to match the desired shade of gray */
}

.text-center {
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
}

.fw-bold {
    font-weight: bold;
}

/** Button styles **/
.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:hover {
    text-decoration: none;
}

.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled,
.btn:disabled {
    opacity: 0.65;
}

.btn-primary {
    background: #012F47;
    color: white;
}

.btn-primary:hover {
    background: #1a4359;
}

.btn-primary:disabled {
    background: #668290;
}

.btn-default:hover {
    background: #33586b;
    color: white;
}

.btn-link {
    color: #012F47;
}

.search-btn {
    width: 15rem;
}

/** Table styles **/
.custom-table {
    margin-bottom: 0.5rem;
}

.custom-table > td {
    padding: 0 0.25rem 0.25rem 0.25rem
}

/* Hide scrollbar for Chrome, Safari, IE, and firefox */
td::-webkit-scrollbar { /* Safari and Chrome */
    display: none;
}

th::-webkit-scrollbar { /* Safari and Chrome */
    display: none;
}

td {
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox */
}

/** v-attributes **/
[v-cloak] {
    display: none;
}

