/* NAV STYLES */
.navbar-brand .brand-dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #D85A30;
	margin-right: 6px;
}

/* LAYOUT STYLES */
main {
	margin-top: 80px;
}

h3 {
	text-decoration: underline;
	margin-bottom: 20px;
}

section {
	margin-top: 5px;
	margin-bottom: 10px;
}

/* CARD STYLES */
.card {
	background-color: white;
	border-radius: 10px;
	box-shadow: 10px 10px 3px grey;
	padding-top: 10px;
}

.card-title {
	text-transform: uppercase;
	font-weight: bold;
	margin-top: 5px;
}

/* SPREADSHEET TABLE */
.spread-table {
	font-size: 12px;
	width: 100%;
}

.spread-table th {
	background-color: #343a40;
	color: white;
	text-align: center;
	white-space: nowrap;
	padding: 6px 8px;
}

.spread-table th.col-name {
	text-align: left;
	min-width: 160px;
}

.spread-table td {
	text-align: center;
	vertical-align: middle;
	padding: 4px 8px;
}

.spread-table td.col-name {
	text-align: left;
	background-color: #f8f9fa;
	white-space: nowrap;
}

.spread-table td.col-phone {
	color: #6c757d;
	font-size: 11px;
	background-color: #f8f9fa;
}

.cell-blocked {
	background-color: #f8d7da !important;
	cursor: not-allowed;
}

.cell-assigned {
	background-color: #d4edda !important;
	cursor: pointer;
}

.cell-assigned:hover {
	background-color: #a8d5b5 !important;
}

.cell-available {
	cursor: pointer;
}

.cell-available:hover {
	background-color: #d4edda !important;
}

.spread-section-header td {
	background-color: #6c757d !important;
	color: white !important;
	font-size: 11px;
}

.spread-total-row td {
	background-color: #e9ecef !important;
	font-weight: bold;
}

/* SCHEDULE VIEW */
.event-card-header {
	background-color: #343a40;
	color: white;
	padding: 14px 18px;
	border-radius: 6px 6px 0 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.event-card-title {
	font-size: 16px;
	font-weight: bold;
}

.event-card-date {
	font-size: 13px;
	color: #adb5bd;
}

.cost-total {
	font-size: 20px;
	font-weight: bold;
	color: #ffc107;
}

.staff-list {
	list-style: none;
	padding-left: 0;
}

.staff-list li {
	font-size: 13px;
	padding: 2px 0;
}

/* EMPLOYEE SCHEDULE */
.event-date-badge {
	min-width: 52px;
	text-align: center;
	background-color: #fff3cd;
	border-radius: 6px;
	padding: 6px 8px;
}

.event-date-badge .month {
	font-size: 10px;
	font-weight: bold;
	text-transform: uppercase;
	color: #856404;
	letter-spacing: 0.5px;
}

.event-date-badge .day {
	font-size: 20px;
	font-weight: bold;
	color: #856404;
	line-height: 1.1;
}

.maps-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	color: #004085;
	padding: 4px 10px;
	border: 1px solid #b8daff;
	border-radius: 4px;
	background-color: #cce5ff;
	white-space: nowrap;
	text-decoration: none;
}

.maps-link:hover {
	background-color: #b8daff;
	text-decoration: none;
}

/* PRINT STYLES */
@media print {
	header, footer, nav, aside {
		display: none;
	}

	* {
		color: #000;
		background: #fff;
		box-shadow: none;
		border-color: #000;
	}

	.btn, form, input, select, textarea, .alert {
		display: none;
	}

	.row {
		page-break-inside: avoid;
	}

	.container, .container-fluid {
		width: 100%;
		padding: 0;
		margin: 0;
	}
}