/* ====== TABS STYLING ====== */

.tabs {
	display: flex;
	border-bottom: 3px solid #1976d2;
	margin-bottom: 20px;
}

/* Κάνουμε override default button styles */
.tabs .tab-link {
	background-color: #e3f2fd !important;
	border: 1px solid #1976d2 !important;
	border-bottom: none !important;
	padding: 12px 22px !important;
	cursor: pointer !important;
	font-weight: 600 !important;
	color: #1976d2 !important;
	border-radius: 10px 10px 0 0 !important;
	margin-right: 6px !important;
	transition: all 0.2s ease-in-out !important;
}

/* Hover */
.tabs .tab-link:hover {
	background-color: #bbdefb !important;
}

/* Active καρτέλα */
.tabs .tab-link.active {
	background-color: #326497 !important;
	color: #ffffff !important;
	position: relative;
	top: 2px;
}

/* Περιεχόμενο */
.tab-content {
	display: none;
	border: 1px solid #1976d2;
	padding: 25px;
	border-radius: 0 10px 10px 10px;
	background: #ffffff;
}