.btn {
    display: inline-block;
    border: 1px solid #414141;
    padding: 0.5rem 1.25rem;
    width: auto;
    transition: background 0.2s, color 0.2s;
    font-weight: 600;
    outline: none;
    font-size: 1rem;
    cursor: pointer;
}
.btn-default {
    background: #414141;
    color: white;
}
.btn-default:hover {
    background: #232323;
}
.btn-danger {
    background: #CD1719;
    color: #fff;
    outline: none;
    box-shadow: none;
    border: none;
}
.btn-danger:hover {
    background: #414141;
    color: #fff;
}
.btn-dark {
    background: rgb(0,0,0);
    color: #fff;
}
.btn-dark:hover {
    background: #414141;
    color: #fff;
}


.bg-primary {
    background-color: #ffffff;
}
.bg-secondary {
    background-color: #eee;
}
.bg-tertiary {
    background-color: #eee;
}
.bg-dark {
    background-color: #414141 !important;
}
.bg-darker {
    background-color: #232323 !important;
}


.text-primary {
    color: #414141;
}
.text-secondary {
    color: #414141;
}
.text-dark {
    color: #414141;
}
.text-darker {
    color: #414141;
}
.text-darkest {
    color: #414141;
}
.text-white {
    color: #ffffff;
}
.text-danger {
    color: #CD1719;
}
.text-success {
    color: #16a34a;
}
.text-info {
    color: #CD1719;
}


.border-light {
    border-color: #eee;
}
.border-default {
    border-color: #eee;
}
.border-medium {
    border-color: #d1d5db;
}
.border-info {
    border-color: #CD1719;
}
.border-accent {
    border-color: #CD1719;
}


.focus-border-info:focus {
    border-color: #CD1719;
}
.focus-text-info:focus {
    color: #CD1719;
}
.focus-text-dark:focus {
    color: #414141;
}
.focus-text-darker:focus {
    color: #414141;
}
.focus-bg-secondary:focus {
    background-color: #eee;
}
.focus-bg-tertiary:focus {
    background-color: #eee;
}
.focus-border-medium:focus {
    border-color: #d1d5db;
}


.hover-bg-light:hover {
    background-color: #d1d5db;
}
.hover-bg-secondary:hover {
    background-color: #d1d5db;
}
.hover-bg-tertiary:hover {
    background-color: #d1d5db;
}
.hover-bg-dark:hover {
    background-color: #232323;
}
.hover-bg-darker:hover {
    background-color: #232323;
}
.hover-text-dark:hover {
    color: #414141;
}
.hover-text-darker:hover {
    color: #414141;
}
.hover-text-darkest:hover {
    color: #414141;
}
.hover-border-medium:hover {
    border-color: #d1d5db;
}


.page-wrapper {
    min-height: 100vh;
    background-color: #eee;
}
.content-card {
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
}
.page-header {
    background-color: #ffffff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}


.heading-xl {
    font-size: 1.5rem;
    font-weight: 600;
    color: #414141;
    line-height: 1.75rem;
}
.heading-lg {
    font-size: 1.25rem;
    font-weight: 600;
    color: #414141;
}
.text-base {
    color: #414141;
}
.text-sm {
    font-size: 0.875rem;
    color: #414141;
}
.text-xs {
    font-size: 0.75rem;
    color: #414141;
}


.input-base {
    width: 100%;
    border: 1px solid #d1d5db;
    padding: 0.5rem 0.75rem;
}
.input-base:focus {
    outline: none;
    border-color: #CD1719;
    box-shadow: 0 0 0 3px rgba(205, 23, 25, 0.1);
}
.label-base {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #414141;
}
.form-checkbox {
    cursor: pointer;
}
.form-checkbox:hover {
    background-color: inherit !important;
    border-color: inherit !important;
    transform: none !important;
    box-shadow: none !important;
}
.form-checkbox:checked {
    accent-color: #CD1719 !important;
    background-color: #CD1719 !important;
    border-color: #CD1719 !important;
}
.form-checkbox:checked:hover {
    accent-color: #CD1719 !important;
    background-color: #CD1719 !important;
    border-color: #CD1719 !important;
}

.form-checkbox:checked:focus {
    accent-color: #CD1719 !important;
    background-color: #CD1719 !important;
    border-color: #CD1719 !important;
    color:#CD1719 !important;
}


.table-wrapper {
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.table-header {
    background-color: #eee;
}



.nav-base {
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}
.nav-text {
    color: #414141;
}
.nav-text:hover {
    color: #414141;
}


.link-base {
    color: #414141;
}
.link-base:hover {
    color: #414141;
}
.link-underline {
    text-decoration: underline;
}


.dashboard-link {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: #eee;
    color: #414141;
    border-radius: 0.375rem;
    text-align: center;
    font-weight: 600;
    transition: background-color 0.2s;
}
.dashboard-link:hover {
    background-color: #d1d5db;
}
