:root
{
	--os-primary:			#F59E0B;
	--os-primary-dark:		#D97706;

	--os-success:			#16A34A;
	--os-danger:			#DC2626;

	--os-background:		#F5F7FA;
	--os-card:				#FFFFFF;

	--os-border:			#E5E7EB;

	--os-text:				#1F2937;
	--os-text-light:		#6B7280;
}

body
{
	background:var(--os-background);

	color:var(--os-text);
}

.os-card
{
	background:var(--os-card);

	border:none;

	border-radius:18px;

	box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.os-logo
{
	font-size:30px;

	font-weight:700;

	color:var(--os-primary);
}

.os-logo span
{
	color:var(--os-text);
}

.btn-os
{
	background:var(--os-primary);

	border:none;

	color:white;

	font-weight:600;
}

.btn-os:hover
{
	background:var(--os-primary-dark);

	color:white;
}

.os-footer
{
	color:var(--os-text-light);

	font-size:.9rem;
}
.terminal
{
	background:#1E1E1E;

	color:#D4D4D4;

	padding:20px;

	border-radius:12px;

	font-family:Consolas, monospace;

	font-size:14px;

	line-height:1.8;

	max-height:500px;

	overflow:auto;
}

/* ===========================
   GŁÓWNY KONTENER MODUŁÓW
=========================== */


.os-panel {
	background: #fff;
	border: 1px solid #e8ecf3;
	border-radius: 6px;
	padding: 30px;
	margin-bottom: 25px;
}

.os-panel-title {
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 20px;
	color: #243447;
	border-bottom: 1px solid #edf1f7;
	padding-bottom: 15px;
}

.os-panel-title i {
	margin-right: 10px;
	color: #f59e0b;
}

.os-panel-body {
	color: #6c757d;
	font-size: 1rem;
}

.list-group
{
	border-radius:0px !important;
}

.list-group {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 3px 12px rgba(0,0,0,.06);
}

.list-group-item {
	padding: .85rem 1rem;
	font-weight: 500;
	border: 0;
	border-bottom: 1px solid #edf1f7;
}

.list-group-item:last-child {
	border-bottom: 0;
}

.list-group-item i {
	width: 22px;
	margin-right: 8px;
}

.table-hover td:hover
{
	cursor:pointer;
}