#mainContainer{
	display: flex;
	flex-direction: column;
	padding: 20px;
	height: 100vh;
}

#mainContent {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

/* Layout principal */
/* O menu desliza por cima do conteúdo (mesmo comportamento em todos os ecrãs).
   Abre/fecha através do botão hamburger (.nav-container.open). */
.nav-container {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.nav-container.open {
    transform: translateX(0);
}

.main-container {
    padding: 20px;
    padding-top: 4rem; /* Espaço para o botão hamburger fixo */
}

/* Sidebar */
.sidebar {
    width: 250px;
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background-color: #212529;
}

/* Header da sidebar */
.sidebar-header {
    padding: 1rem;
    padding-left: 3.75rem; /* Espaço para o botão hamburger sobreposto */
    white-space: nowrap;
}

/* Links da navegação */
.sidebar .nav-item {
    width: 100%;
    white-space: nowrap;
}

.sidebar .nav-link {
    padding: 1rem;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
}

.sidebar .nav-link:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.sidebar .nav-link i {
    width: 24px;
    font-size: 1.2em;
    text-align: center;
}

.sidebar .nav-link .nav-text {
    margin-left: 1rem;
}

/* Submenus da navegação */
.sidebar .has-submenu {
    position: relative;
}

.sidebar .submenu-arrow {
    margin-left: auto;
    transition: transform 0.2s;
}

.sidebar .has-submenu.expanded .submenu-arrow {
    transform: rotate(90deg);
}

.sidebar .nav-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: rgba(0, 0, 0, 0.2);
}

.sidebar .has-submenu.expanded .nav-submenu {
    max-height: 500px;
}

.sidebar .nav-subitem {
    width: 100%;
}

.sidebar .nav-sublink {
    padding: 0.75rem 1rem 0.75rem 2.5rem !important;
    font-size: 0.9em;
}

.sidebar .nav-sublink .icon {
    font-size: 0.85em;
}

/* Link ativo */
.sidebar .nav-link.active {
    color: white;
    background-color: rgba(255, 255, 255, 0.15);
    border-left: 3px solid var(--color-primary, #0d6efd);
}

/* Footer da sidebar */
.sidebar-footer {
    margin-top: auto;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#userSection {
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#userName {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9em;
    overflow: hidden;
    text-overflow: ellipsis;
}

#logoutButton {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

a {
	text-decoration: none;
}

/* Botão hamburger: fixo no canto superior esquerdo, sempre visível */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1100;
    width: 36px;
    height: 36px;
    padding: 0;
    font-size: 1.15rem;
    line-height: 1;
    color: #fff;
    background-color: #212529;
    border: none;
    border-radius: 0.3rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

/* Fundo escurecido por trás do menu aberto */
.sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.5);
}

.sidebar-backdrop.open {
    display: block;
}

.nm {
	text-align: right;
}
.cn {
	text-align: center;
}

/* Splash Screen (autenticação) */
#splashScreen {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	background:
		radial-gradient(120% 120% at 50% 0%, var(--color-primary-light) 0%, transparent 55%),
		var(--color-bg-body, var(--color-light));
	z-index: 9999;
}

.splash-card {
	width: 100%;
	max-width: 400px;
	text-align: center;
	background: var(--color-white);
	border: 1px solid var(--color-card-border);
	border-radius: 1.25rem;
	padding: 2.5rem 2rem;
	box-shadow: 0 18px 50px rgba(var(--color-dark-rgb), 0.14);
}

.splash-logo {
	width: 84px;
	height: 84px;
	border-radius: 1.1rem;
	margin-bottom: 1.25rem;
	box-shadow: 0 6px 18px rgba(var(--color-dark-rgb), 0.16);
}

.splash-title {
	font-size: 1.9rem;
	font-weight: 700;
	margin: 0 0 0.35rem;
	color: var(--color-text-primary);
}

.splash-sub {
	font-size: 1rem;
	margin: 0 0 1.75rem;
	color: var(--color-text-muted);
}

.splash-btn {
	width: 100%;
	padding: 0.8rem 1.25rem;
	font-size: 1rem;
	font-weight: 600;
	background: var(--color-white);
	color: var(--color-text-primary);
	border: 1px solid var(--color-border);
	border-radius: 0.6rem;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	transition: box-shadow 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.splash-btn:hover {
	border-color: var(--color-primary);
	box-shadow: 0 6px 18px rgba(var(--color-primary-rgb), 0.18);
	transform: translateY(-1px);
}

.splash-btn .ms-logo {
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
}

.splash-foot {
	margin: 1.5rem 0 0;
	font-size: 0.8rem;
	color: var(--color-text-muted);
}

/* ========================================
   BOOTSTRAP REPLACEMENT STYLES
   ======================================== */

/* ========================================
   CSS RESET & BASE
   ======================================== */
* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--color-text-primary);
	background-color: var(--color-bg-body);
}

/* ========================================
   LAYOUT SYSTEM (Flexbox Grid)
   ======================================== */
.container-fluid {
	width: 100%;
	padding-right: 1rem;
	padding-left: 1rem;
	margin-right: auto;
	margin-left: auto;
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -0.5rem;
	margin-left: -0.5rem;
}

.row > * {
	padding-right: 0.5rem;
	padding-left: 0.5rem;
}

.col {
	flex: 1 0 0%;
}

.col-12 {
	flex: 0 0 auto;
	width: 100%;
}

@media (min-width: 768px) {
	.col-md-2 {
		flex: 0 0 auto;
		width: 16.6666%;
	}
	.col-md-4 {
		flex: 0 0 auto;
		width: 33.3333%;
	}
	.col-md-8 {
		flex: 0 0 auto;
		width: 66.6666%;
	}
}

/* ========================================
   COMPONENTS - Buttons
   ======================================== */
.btn {
	display: inline-block;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	cursor: pointer;
	user-select: none;
	border: 1px solid transparent;
	border-radius: 0.375rem;
	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.25rem rgba(var(--color-primary-rgb), 0.25);
}

.btn:disabled,
.btn.disabled {
	pointer-events: none;
	opacity: 0.65;
}

.btn-primary {
	color: var(--color-white);
	background-color: var(--color-primary);
	border-color: var(--color-primary);
}

.btn-primary:hover {
	background-color: var(--color-primary-hover);
	border-color: var(--color-primary-hover);
	color: var(--color-white);
}

.btn-primary:active {
	background-color: var(--color-primary-active);
	border-color: var(--color-primary-active);
}

.btn-success {
	color: var(--color-white);
	background-color: var(--color-success);
	border-color: var(--color-success);
}

.btn-success:hover {
	background-color: var(--color-success-hover);
	border-color: var(--color-success-hover);
	color: var(--color-white);
}

.btn-outline-light {
	color: var(--color-button-outline);
	border-color: var(--color-button-outline);
	background-color: transparent;
}

.btn-outline-light:hover {
	color: var(--color-dark);
	background-color: var(--color-white);
	border-color: var(--color-white);
}

.btn-outline-secondary {
	color: var(--color-secondary);
	border-color: var(--color-secondary);
	background-color: transparent;
}

.btn-outline-secondary:hover {
	color: var(--color-white);
	background-color: var(--color-secondary);
	border-color: var(--color-secondary);
}

.btn-link {
	font-weight: 400;
	color: inherit;
	text-decoration: none;
	background-color: transparent;
	border: none;
	padding: 0;
}

.btn-link:hover {
	color: inherit;
	text-decoration: none;
	background-color: rgba(255, 255, 255, 0.1);
}

.btn-sm {
	padding: 0.25rem 0.5rem;
	font-size: 0.875rem;
	border-radius: 0.25rem;
}

/* ========================================
   COMPONENTS - Cards
   ======================================== */
.card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: var(--color-white);
	background-clip: border-box;
	border: 1px solid var(--color-card-border);
	border-radius: 0.375rem;
}

.card-header {
	padding: 0.75rem 1rem;
	margin-bottom: 0;
	background-color: var(--color-light);
	border-bottom: 1px solid var(--color-card-border);
	border-radius: 0.375rem 0.375rem 0 0;
}

.card-body {
	flex: 1 1 auto;
	padding: 1rem;
}

.card-title {
	margin-bottom: 0.5rem;
	font-size: 1.25rem;
	font-weight: 500;
}

.card-text {
	margin-bottom: 0;
}

/* ========================================
   COMPONENTS - Forms
   ======================================== */
.form-label {
	display: inline-block;
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.form-control {
	display: block;
	width: 100%;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-text-primary);
	background-color: var(--color-white);
	background-clip: padding-box;
	border: 1px solid var(--color-border);
	border-radius: 0.375rem;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
	color: var(--color-text-primary);
	background-color: var(--color-white);
	border-color: #86b7fe;
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Normaliza inputs de data: no iOS o controlo nativo cresce em altura e
   centra o valor. Forçar appearance/altura mantém-no igual aos restantes. */
.form-control[type="date"],
.form-control[type="time"],
.form-control[type="datetime-local"] {
	-webkit-appearance: none;
	appearance: none;
	min-height: calc(1.5em + 0.75rem + 2px);
	text-align: left;
}

/* Os componentes internos do controlo de data no WebKit/iOS herdam o
   line-height grande; alinhamos à esquerda e removemos espaçamento extra. */
.form-control[type="date"]::-webkit-date-and-time-value {
	text-align: left;
	margin: 0;
}

.form-select {
	display: block;
	width: 100%;
	padding: 0.375rem 2.25rem 0.375rem 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-text-primary);
	background-color: var(--color-white);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 16px 12px;
	border: 1px solid var(--color-border);
	border-radius: 0.375rem;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	appearance: none;
}

.form-select:focus {
	border-color: #86b7fe;
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* ========================================
   COMPONENTS - Tables
   ======================================== */
.table {
	width: 100%;
	margin-bottom: 1rem;
	color: var(--color-text-primary);
	vertical-align: top;
	border-color: var(--color-border);
	border-collapse: collapse;
}

.table > :not(caption) > * > * {
	padding: 0.5rem 0.5rem;
	background-color: var(--color-white);
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: var(--color-border);
	box-shadow: inset 0 0 0 9999px transparent;
}

.table > tbody {
	vertical-align: inherit;
}

.table > thead {
	vertical-align: bottom;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
	background-color: var(--color-bg-stripe);
}

.table > tbody > tr.row-selected > td {
	background-color: var(--color-primary-light, #cfe2ff);
}

.cursor-pointer {
	cursor: pointer;
}

.table th.sortable {
	cursor: pointer;
	user-select: none;
}

.table th.sortable:hover {
	background-color: var(--color-light);
}

.table th.sortable::after {
	content: '↕️';
	font-size: 0.8em;
	margin-left: 5px;
	opacity: 0.3;
}

.table th.sortable.asc::after {
	content: '↑';
	opacity: 1;
}

.table th.sortable.desc::after {
	content: '↓';
	opacity: 1;
}

tr.selected-row {
	background-color: var(--color-bg-selected) !important;
}

.table-container {
	position: relative;
}

.table-container thead th {
	position: sticky;
	top: 0;
	background-color: var(--color-light);
	z-index: 10;
}

/* ========================================
   COMPONENTS - Alerts
   ======================================== */
.alert {
	position: relative;
	padding: 1rem 1rem;
	margin-bottom: 1rem;
	border: 1px solid transparent;
	border-radius: 0.375rem;
}

.alert-info {
	color: #055160;
	background-color: var(--color-info-bg);
	border-color: #b6effb;
}

.alert-success {
	color: #0f5132;
	background-color: var(--color-success-bg);
	border-color: #badbcc;
}

.alert-danger {
	color: #842029;
	background-color: var(--color-danger-bg);
	border-color: #f5c2c7;
}

.alert-warning {
	color: #664d03;
	background-color: var(--color-warning-bg);
	border-color: #ffecb5;
}

/* ========================================
   COMPONENTS - Badges
   ======================================== */
.badge {
	display: inline-block;
	padding: 0.35em 0.65em;
	font-size: 0.75em;
	font-weight: 700;
	line-height: 1;
	color: var(--color-white);
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
	border-radius: 0.375rem;
}

.badge.bg-primary {
	background-color: var(--color-primary) !important;
}

.badge.bg-success {
	background-color: var(--color-success) !important;
}

.badge.bg-secondary {
	background-color: var(--color-secondary) !important;
}

/* ========================================
   COMPONENTS - List Groups
   ======================================== */
.list-group {
	display: flex;
	flex-direction: column;
	padding-left: 0;
	margin-bottom: 0;
	border-radius: 0.375rem;
}

.list-group-item {
	position: relative;
	display: block;
	padding: 0.5rem 1rem;
	color: var(--color-text-primary);
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
}

.list-group-item:first-child {
	border-top-left-radius: 0.375rem;
	border-top-right-radius: 0.375rem;
}

.list-group-item:last-child {
	border-bottom-right-radius: 0.375rem;
	border-bottom-left-radius: 0.375rem;
}

.list-group-item + .list-group-item {
	border-top-width: 0;
}

/* ========================================
   COMPONENTS - Spinners
   ======================================== */
@keyframes spinner-border {
	to { transform: rotate(360deg); }
}

.spinner-border {
	display: inline-block;
	width: 2rem;
	height: 2rem;
	vertical-align: -0.125em;
	border: 0.25em solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	animation: spinner-border 0.75s linear infinite;
}

.spinner-border-sm {
	width: 1rem;
	height: 1rem;
	border-width: 0.2em;
}

/* ========================================
   COMPONENTS - Navbar
   ======================================== */
.navbar-nav {
	display: flex;
	flex-direction: column;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}

.nav-item {
	list-style: none;
}

.navbar-brand {
	padding-top: 0.3125rem;
	padding-bottom: 0.3125rem;
	margin-right: 1rem;
	font-size: 1.25rem;
	text-decoration: none;
	white-space: nowrap;
	color: var(--color-white);
}

.navbar-brand:hover {
	color: var(--color-white);
}

.navbar-text {
	color: var(--color-text-light);
}

.navbar-dark {
	/* Applied to dark backgrounds */
}

/* ========================================
   UTILITIES - Display
   ======================================== */
.d-none {
	display: none !important;
}

.d-flex {
	display: flex !important;
}

/* ========================================
   UTILITIES - Flexbox
   ======================================== */
.flex-column {
	flex-direction: column !important;
}

.flex-grow-1 {
	flex-grow: 1 !important;
}

.justify-content-between {
	justify-content: space-between !important;
}

.align-items-center {
	align-items: center !important;
}

/* ========================================
   UTILITIES - Spacing (Margin Bottom)
   ======================================== */
.mb-0 {
	margin-bottom: 0 !important;
}

.mb-2 {
	margin-bottom: 0.5rem !important;
}

.mb-3 {
	margin-bottom: 0.75rem !important;
}

.mb-4 {
	margin-bottom: 1rem !important;
}

/* ========================================
   UTILITIES - Spacing (Margin Top)
   ======================================== */
.mt-2 {
	margin-top: 0.5rem !important;
}

.mt-3 {
	margin-top: 0.75rem !important;
}

.mt-4 {
	margin-top: 1rem !important;
}

/* ========================================
   UTILITIES - Spacing (Margin Left/Right)
   ======================================== */
.ms-2 {
	margin-left: 0.5rem !important;
}

.me-2 {
	margin-right: 0.5rem !important;
}

/* ========================================
   UTILITIES - Spacing (Padding)
   ======================================== */
.py-5 {
	padding-top: 1.5rem !important;
	padding-bottom: 1.5rem !important;
}

/* ========================================
   UTILITIES - Sizing
   ======================================== */
.h-100 {
	height: 100% !important;
}

.w-100 {
	width: 100% !important;
}

/* ========================================
   UTILITIES - Text Alignment
   ======================================== */
.text-center {
	text-align: center !important;
}
.text-end {
	text-align: right !important;
}

/* ========================================
   UTILITIES - Text Color
   ======================================== */
.text-muted {
	color: var(--color-text-muted) !important;
}

.text-light {
	color: var(--color-text-light) !important;
}

.text-danger {
	color: var(--color-danger) !important;
}

/* ========================================
   UTILITIES - Background Color
   ======================================== */
.bg-dark {
	background-color: var(--color-bg-dark) !important;
	color: var(--color-white);
}

.bg-success {
	background-color: var(--color-success) !important;
}

.bg-secondary {
	background-color: var(--color-secondary) !important;
}

/* ========================================
   UTILITIES - Accessibility
   ======================================== */
.visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/* ========================================
   ICON CLASSES
   ======================================== */
.icon {
	display: inline-block;
	width: 24px;
	text-align: center;
	font-size: 1.2em;
}

.icon-lg {
	font-size: 3rem;
	width: auto;
}

/* ========================================
   MODAL OVERLAY
   ======================================== */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.modal-dialog {
	background: transparent;
	max-width: 600px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
	from {
		transform: translateY(-50px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.modal-content {
	background-color: var(--color-bg-card, #fff);
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.25rem 1.5rem;
	background-color: var(--color-primary, #0d6efd);
	color: white;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 500;
}

.modal-body {
	padding: 1.5rem;
	color: var(--color-text-primary, #212529);
}

.modal-footer {
	display: flex;
	justify-content: flex-end;
	gap: 0.5rem;
	padding: 1rem 1.5rem;
	background-color: var(--color-bg-secondary, #f8f9fa);
	border-top: 1px solid var(--color-border, #dee2e6);
}

.btn-close {
	background: transparent;
	border: none;
	color: white;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	padding: 0;
	width: 1.5rem;
	height: 1.5rem;
	opacity: 0.8;
	transition: opacity 0.2s;
}

.btn-close:hover {
	opacity: 1;
}

.btn-close::before {
	content: '×';
	display: block;
}

/* ========================================
   COMPONENTS - Tabs
   ======================================== */
.nav-tabs {
	display: flex;
	flex-wrap: wrap;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
	border-bottom: 1px solid var(--color-border);
}

.nav-tabs .nav-item {
	margin-bottom: -1px;
}

.nav-tabs .nav-link {
	display: block;
	padding: 0.5rem 1rem;
	color: var(--color-text-muted);
	text-decoration: none;
	background: none;
	border: 1px solid transparent;
	border-top-left-radius: 0.375rem;
	border-top-right-radius: 0.375rem;
	cursor: pointer;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.nav-tabs .nav-link:hover {
	color: var(--color-text-primary);
	border-color: var(--color-light) var(--color-light) var(--color-border);
	isolation: isolate;
}

.nav-tabs .nav-link.active {
	color: var(--color-text-primary);
	background-color: var(--color-white);
	border-color: var(--color-border) var(--color-border) var(--color-white);
	font-weight: 500;
}

.nav-tabs .nav-link.disabled {
	color: var(--color-text-muted);
	opacity: 0.5;
	pointer-events: none;
	cursor: default;
}

.tab-content {
	padding-top: 1rem;
}

.tab-content > .tab-pane {
	display: none;
}

.tab-content > .tab-pane.active {
	display: block;
}

/* ========================================
   UTILITIES - Button Danger Outline
   ======================================== */
.btn-outline-danger {
	color: var(--color-danger);
	border-color: var(--color-danger);
	background-color: transparent;
}

.btn-outline-danger:hover {
	color: var(--color-white);
	background-color: var(--color-danger);
	border-color: var(--color-danger);
}

/* ========================================
   UTILITIES - Gap
   ======================================== */
.gap-2 {
	gap: 0.5rem !important;
}

.gap-3 {
	gap: 1rem !important;
}
