@import url(//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800&subset=latin,cyrillic-ext,greek-ext,vietnamese);

/* =======================================================
   GLOBAL
   ======================================================= */

html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 1.07rem;
	font-weight: 400;
	line-height: 1.5;
	color: #e5e7eb;
	text-align: left;
	background-color: #020617; /* tmavý podklad ako widgety */
	text-rendering: optimizeLegibility;
}

html {
	overflow: scroll;
	overflow-x: hidden;
}

/* header wrapper (nad adminom) */
header#header {
	position: relative;
	z-index: 99;
}

/* reset marginov */
h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin-top: 0;
}

/* odkazy – default text */
a {
	color: #38bdf8;
}

a:hover,
a:focus {
	text-decoration: none;
	color: #f9fafb;
}

/* =======================================================
   MINI SIDEBAR – #column-left-fix (widgetový štýl)
   ======================================================= */

#button-menu-fix {
	line-height: 35px;
	float: left;
	font-size: 18px;
	padding: 0px 8px;
	display: inline-block;
	cursor: pointer;
	color: #e5e7eb;
}

/* na desktop nepotrebujeme klasické #button-menu */
@media (min-width: 768px) {
	#button-menu {
		display: none;
	}
}

/* profil v mini paneli */
#column-left-fix.active #profile {
	display: block;
	padding: 10px 15px;
	overflow: auto;
}

#profile div {
	float: left;
	color: #cbd5f5;
}

#profile div i {
	font-size: 40px;
	color: #22c55e; /* zelená ikonka „online“ */
}

#profile div+div {
	margin-left: 12px;
}

#profile h4 {
	margin-top: 4px;
	font-size: 14px;
	font-weight: 500;
	color: #f9fafb;
	margin-bottom: 0;
}

/* samotný mini-left panel */
#column-left-fix {
	width: 70px;
	height: auto;
	padding: 14px 0;
	border-radius: 16px;
	top: 72px;
	left: 16px;
	transition: all .25s ease;
	position: absolute;
	z-index: 10;
	background: #020617;
	box-shadow:
		0 10px 40px rgba(15, 23, 42, 0.9),
		0 0 0 1px rgba(148, 163, 184, 0.25);
}

#column-left-fix.active {
	width: 254px;
	display: block;
}

#content {
	padding-bottom: 40px;
	transition: all .25s ease;
}

#column-left-fix + #content {
	margin-left: 65px;
}

#column-left-fix + #content + #footer {
	margin-left: 50px;
}

#column-left-fix.active #stats {
	display: block;
}

#stats {
	display: none;
}

/* scrollbar vo fix paneli */
#column-left-fix::-webkit-scrollbar {
	width: 4px;
	height: 4px;
}

#column-left-fix::-webkit-scrollbar-button {
	background-color: transparent;
}

#column-left-fix::-webkit-scrollbar-track {
	background-color: transparent;
}

#column-left-fix::-webkit-scrollbar-track-piece {
	background-color: transparent;
}

#column-left-fix::-webkit-scrollbar-thumb {
	height: 50px;
	background-color: #1f2937;
	border-radius: 9999px;
}

#column-left-fix::-webkit-scrollbar-corner {
	background-color: transparent;
}

#column-left-fix::-webkit-resizer {
	background-color: transparent;
}

/* mini panel na mobile – skrytý, kým ho neotvorí JS */
@media (max-width: 767px) {
	#column-left-fix {
		overflow: hidden;
		display: none;
	}

	#column-left-fix + #content {
		margin-left: 0;
	}

	#column-left-fix + #content + #footer {
		margin-left: 0;
	}
}

/* =======================================================
   MENU V MINI SIDEBARE – #menu pre #column-left-fix
   ======================================================= */

#menu,
#menu ul,
#menu li {
	padding: 0;
	margin: 0;
	list-style: none;
}

#menu li.open li:last-child {
	border-bottom: 0;
}

#menu {
	margin-bottom: 20px;
}

/* hlavná úroveň v mini paneli */
#menu > li {
	position: relative;
}

#menu > li > a {
	display: flex;
	align-items: center;
	padding: 10px 14px;
	color: #e5e7eb;
	font-size: 15px;
	padding-left: 13px;
	border-bottom: 0;
	text-align: left;
	border-radius: 9999px;
	margin: 2px 8px;
	transition:
		background-color .15s ease,
		color .15s ease,
		transform .1s ease;
}

#menu > li > a i {
	font-size: 20px;
	width: 26px;
	text-align: center;
}

/* text (label) pri aktívnom stave – v zloženom režime skrytý */
#menu > li > a > span {
	display: none;
	margin-left: 8px;
}

#menu li li a:before {
	content: "\f101";
	font-size: 14px;
	font-family: "Font Awesome 5 Free";
	margin-left: 10px;
	margin-right: 10px;
	transition: margin .3s ease;
}

#menu li li a:hover:before {
	margin-right: 20px;
}

#menu li li.active a:last-child:before {
	margin-left: 20px;
	margin-right: 10px;
}

#menu > li > ul {
	position: absolute;
	left: 50px;
	top: 0;
	width: 240px;
	visibility: hidden;
}

#menu li ul {
	overflow: hidden;
}

#menu > li:hover > ul {
	visibility: visible;
}

/* šípky pri položkách s deťmi */
#menu li a.parent:after {
	opacity: 0;
}

#menu li li a.parent:after,
#column-left-fix.active #menu > li a.parent:after {
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	float: right;
	margin-right: 8px;
	opacity: 1;
	color: #9ca3af;
}

#menu li li.open > a.parent:after,
#column-left-fix.active #menu > li.open > a.parent:after,
#column-left-fix.active #menu > li li.open > a.parent:after {
	content: "\f107";
}

/* vnorené úrovne */
#menu li ul a {
	padding-left: 20px;
}

#menu li li li ul a {
	padding-left: 60px;
}

#menu li li li li ul a {
	padding-left: 80px;
}

/* rozšírený stav mini panelu */
@media (min-width: 768px) {
	#column-left-fix.active {
		overflow: auto;
	}

	#column-left-fix.active + #content {
		margin-left: 254px;
	}

	#column-left-fix.active + #content + #footer {
		margin-left: 254px;
	}
}

/* mobil – otvorený mini panel posúva obsah */
@media (max-width: 767px) {
	#button-menu-fix {
		margin-right: 17px;
		font-size: 17px;
		padding: 10px 16px;
		line-height: 25px;
	}

	#column-left-fix.active + #content {
		position: relative;
		left: 254px;
	}

	#column-left-fix.active + #content + #footer {
		position: relative;
		left: 254px;
	}
}

#column-left-fix.active {
	width: 254px;
}

#column-left-fix.active #menu li i {
	font-size: 18px;
}

#column-left-fix.active #menu > li > a > span {
	display: inline;
}

#column-left-fix.active #menu > li > ul {
	position: relative;
	left: auto;
	top: auto;
	width: auto;
	visibility: visible;
}

/* =======================================================
   VŠEOBECNÉ DROBNOSTI
   ======================================================= */

span.hidden-xs,
span.hidden-sm,
span.hidden-md,
span.hidden-lg {
	display: inline;
}

fieldset legend {
	padding-bottom: 5px;
}

/* základné inputy – IE/old reset */
input[type="radio"],
input[type="checkbox"] {
	margin: 2px 0 0;
}

.radio,
.checkbox {
	min-height: 18px;
}

.navbar-brand > img {
	width: 70%;
}

/* Mobile header logo */
@media (max-width: 767px) {
	.navbar-header {
		margin-right: 0;
		margin-left: 0;
		float: left;
	}
	.navbar-brand {
		display: none;
	}
}

/* =======================================================
   RÁDIO & CHECKBOX (admin)
   ======================================================= */

input[type="radio"],
.radio input[type="radio"],
.radio-inline input[type="radio"],
input[type="checkbox"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
	position: relative;
	width: 16px;
	height: 16px;
	-webkit-appearance: none;
	background: #020617;
	border: 1px solid #4b5563;
	border-radius: 3px;
}

input[type="radio"]:focus,
.radio input[type="radio"]:focus,
.radio-inline input[type="radio"]:focus,
input[type="checkbox"]:focus,
.checkbox input[type="checkbox"]:focus,
.checkbox-inline input[type="checkbox"]:focus {
	border-color: #1d8cf8;
	outline: 0;
}

input[type="radio"]:active,
.radio input[type="radio"]:active,
.radio-inline input[type="radio"]:active,
input[type="checkbox"]:active,
.checkbox input[type="checkbox"]:active,
.checkbox-inline input[type="checkbox"]:active {
	background-color: #111827;
	border-color: #374151;
}

input[type="radio"],
.radio input[type="radio"],
.radio-inline input[type="radio"] {
	border-radius: 9999px;
}

input[type="radio"]:checked::after,
.radio input[type="radio"]:checked::after,
.radio-inline input[type="radio"]:checked::after {
	position: relative;
	top: 3px;
	left: 3px;
	display: block;
	width: 7px;
	height: 7px;
	content: '';
	background: #1d8cf8;
	border-radius: 9999px;
}

input[type="checkbox"]:hover,
.checkbox input[type="checkbox"]:hover,
.checkbox-inline input[type="checkbox"]:hover {
	border-color: #6b7280;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .15);
}

input[type="checkbox"]:checked {
	border-color: #1d8cf8;
	background: #1d8cf8;
}

input[type="checkbox"]:checked::after,
.checkbox input[type="checkbox"]:checked::after,
.checkbox-inline input[type="checkbox"]:checked::after {
	position: absolute;
	top: 1px;
	left: 5px;
	display: block;
	content: "\2713";
	color: #0b1120;
	font-size: 12px;
}

/* výška bežných inputov/selectov */
.uneditable-input,
input[type=color],
input[type=date],
input[type=datetime-local],
input[type=datetime],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
select {
	height: 38px !important;
}

/* checkbox väčší */
input[type=checkbox] {
	width: 18px;
	height: 18px;
	border-radius: 3px;
}

.input-group .btn {
	max-height: 38px;
}

input[type=checkbox]:hover {
	cursor: pointer;
}

/* =======================================================
   SCROLLBARY
   ======================================================= */

::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}
::-webkit-scrollbar-track {
	background-color: #020617;
}
::-webkit-scrollbar-thumb {
	background-color: #4b5563;
	border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
	background-color: #6b7280;
}

::-moz-selection {
	background: #1d4ed81f;
}
::selection {
	background: #1d4ed81f;
}
::-moz-focus-outer,
::-moz-focus-inner {
	border: 0;
	padding: 0;
}

/* =======================================================
   PAGE HEADER & HLAVNÝ HEADER
   ======================================================= */

.page-header {
	vertical-align: middle;
	margin: 15px 0;
	padding: 0;
	border-bottom: 0;
}
.page-header h1 {
	font-family: Arial, Helvetica, sans-serif;
	display: block;
	margin: 5px auto 15px;
	font-weight: 300;
	font-size: 19px;
	color: #e5e7eb;
	line-height: 36px;
	position: absolute;
	top: 12px;
	left: 300px;
	z-index: 999;
}

/* horný admin header */
#header {
	min-height: 0;
	background: #020617;
	border-bottom: 1px solid #1f2937;
	margin: 0;
	padding: 0;
	box-shadow: 0 8px 20px rgba(15, 23, 42, .8);
}

.navbar-right > li > a {
	font-size: 0;
}

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus,
.nav > li > a:hover,
.nav > li > a:focus {
	background-color: transparent;
	border-color: transparent;
	color: #f9fafb;
}

#header .nav > li {
	float: left;
}

#header .nav > li li {
	min-width: 200px;
}

#header .navbar-brand {
	margin: 0;
	padding: 5px 10px;
	height: unset;
}
#header .navbar-brand img {
	width: 100%;
}

#header #button-menu + .navbar-brand {
	display: none;
}

#header .nav > li > a {
	line-height: 38px;
	cursor: pointer;
	color: #e5e7eb;
	font-weight: 600;
	align-items: center;
	border-left: 1px solid #1f2937;
}

#header .nav > li > a > .label {
	text-shadow: none;
	background: #ef4444;
	font-weight: 400;
	padding: 3px 5px;
	border-radius: 9999px;
	position: absolute;
	top: 5px;
	left: 6px;
}

#button-menu {
	padding: 10px 20px 13px;
	line-height: 30px;
	float: left;
	display: inline-block;
	cursor: pointer;
	color: #9ca3af;
	border-right: 1px solid #1f2937;
}

/* Header Profile */
#header #header-profile .nav-link {
	padding: 0 15px;
	line-height: 45px;
}
#header #header-profile img {
	max-width: 30px;
}

/* Desktop profil */
@media (min-width: 992px) {
	#header #header-profile .nav-link {
		padding: 0 10px;
		line-height: 60px;
	}
	#header #header-profile img {
		max-width: 35px;
	}
}

/* =======================================================
   BREADCRUMB
   ======================================================= */

.breadcrumb {
	display: inline-block;
	background: transparent;
	margin: 5px auto 15px;
	padding: 0;
	font-weight: 300;
	font-size: 14px;
}
.breadcrumb li a {
	color: #e5e7eb;
	font-size: 18px;
	padding: 0;
	margin: 0;
	text-shadow: none;
}
.breadcrumb li:last-child a {
	color: #9ca3af;
}
.breadcrumb li a:hover {
	color: #f9fafb;
	text-decoration: none;
}
.breadcrumb li + li:before {
	content: "/";
	font-family: "Font Awesome 5 Free";
	color: #6b7280;
	padding: 0 5px;
}

/* =======================================================
   LAYOUT CONTAINER
   ======================================================= */

#container {
	min-height: 100%;
	width: 100%;
	position: relative;
}
.container-fluid {
	padding-left: 20px;
	padding-right: 20px;
}
#content {
	padding-bottom: 40px;
	transition: all .25s ease;
}

/* klasický ľavý panel */
#profile {
	display: none;
}
#column-left.active #profile {
	display: block;
	padding: 10px 15px;
	overflow: auto;
	border-bottom: 1px solid #1f2937;
}
#profile div {
	float: left;
	color: #e5e7eb;
}
#profile div i {
	font-size: 40px;
	color: #1d8cf8;
}
#profile div + div {
	margin-left: 15px;
}
#profile h4 {
	margin-top: 6px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #e5e7eb;
	margin-bottom: 0;
}

/* hlavný sidebar */
#column-left {
	width: 60px;
	height: 100%;
	position: absolute;
	top: 0;
	padding-top: 65px;
	z-index: 10;
	transition: all .25s ease;
	background: #020617;
	border-right: 1px solid #1f2937;
}

#column-left.active {
	width: 235px;
	display: block;
}

#column-left + #content {
	margin-left: 50px;
}
#column-left + #content + #footer {
	margin-left: 50px;
}

#column-left.active #stats {
	display: block;
}

#stats {
	display: none;
	border-radius: 8px;
	color: #e5e7eb;
	margin: 0;
	padding: 15px 10px;
	background: #020617;
}
#stats:hover {
	background: #0b1120;
	cursor: pointer;
}
#stats ul,
#stats li {
	padding: 0;
	margin: 0;
	list-style: none;
}
#stats li {
	font-size: 11px;
	color: #9ca3af;
	padding: 5px 10px;
	border-bottom: 0;
}
#stats div:first-child {
	margin-bottom: 10px;
	font-size: 13px;
	color: #e5e7eb;
}
#stats .progress {
	height: 9px;
	background-color: #1f2937;
	box-shadow: none;
	margin-bottom: 0;
}
#stats .progress-bar {
	box-shadow: none;
}
.label-success,
.progress-bar-success {
	background: #22c55e;
}
.label-warning,
.progress-bar-warning {
	background: #facc15;
}
.label-danger,
.progress-bar-danger {
	background: #ef4444;
}
.label {
	padding: .35em .6em .3em;
}

/* SUCCESS (green) */
.table > tbody > tr.success > td {
	background-color: rgba(22, 163, 74, 0.14) !important;
	color: #22c55e !important;
}
.table > tbody > tr.success > td:nth-child(4)::before {
	content: "✔ ";
	color: #22c55e;
	font-size: 16px;
	font-weight: bold;
	margin-right: 6px;
}

/* WARNING (blue-ish info) */
.table > tbody > tr.warning > td {
	background-color: rgba(14, 165, 233, 0.14) !important;
	color: #38bdf8 !important;
}
.table > tbody > tr.warning > td:nth-child(4)::before {
	content: "⚠ ";
	color: #38bdf8;
	font-size: 16px;
	font-weight: bold;
	margin-right: 6px;
}

/* DANGER (red) */
.table > tbody > tr.danger > td {
	background-color: rgba(239, 68, 68, 0.16) !important;
	color: #ef4444 !important;
}
.table > tbody > tr.danger > td:nth-child(4)::before {
	content: "✖ ";
	color: #ef4444;
	font-size: 16px;
	font-weight: bold;
	margin-right: 6px;
}

/* ŠPECIÁLNY LOOK pre duch-objednávky */
.table > tbody > tr.danger.missing-order > td {
	background-color: rgba(250, 204, 21, 0.12) !important; /* žlto-červený nádych */
	color: #eab308 !important;
}
.table > tbody > tr.danger.missing-order > td:nth-child(4)::before {
	content: "⚡ ";
	color: #eab308;
	font-size: 16px;
	font-weight: bold;
	margin-right: 6px;
}

/* Hover */
.table-hover > tbody > tr.success:hover > td {
	background-color: rgba(22, 163, 74, 0.22) !important;
}
.table-hover > tbody > tr.warning:hover > td {
	background-color: rgba(14, 165, 233, 0.22) !important;
}
.table-hover > tbody > tr.danger:hover > td {
	background-color: rgba(239, 68, 68, 0.26) !important;
}

/* menu v hlavnom sidebare (reuses #menu) */
#menu,
#menu ul,
#menu li {
	font-weight: 400;
}
#menu > li {
	position: relative;
}
#menu li a {
	text-decoration: none;
	display: block;
	padding: 10px;
	cursor: pointer;
	color: #e5e7eb;
	font-size: 16px;
	padding-left: 13px;
	border-bottom: 0;
	text-align: left;
}
#menu li a i {
	font-size: 45px;
}
#menu li li a.parent:after,
#column-left.active #menu > li a.parent:after {
	color: #9ca3af !important;
}
#menu > li > a > span {
	display: none;
	margin-left: 10px;
}
#menu li li a {
	color: #cbd5f5;
	text-align: left;
}
#menu li li a:hover {
	color: #ffffff;
	background-color: #0b1120;
}
#menu li li a:before {
	content: "";
	margin-right: 20px;
	transition: margin .3s ease;
}
#menu li li a:hover:before {
	margin-right: 20px;
}
#menu li li.active > a:last-child {
	color: #1d8cf8;
}
#menu li li.active a:last-child:before {
	margin-left: 20px;
	margin-right: 10px;
	color: #1d8cf8;
}
#menu > li > ul {
	position: absolute;
	left: 68px;
	background-color: #020617;
	border-top: 1px solid #1f2937;
	border-bottom: 1px solid #1f2937;
	border-left: 1px solid #1f2937;
	top: 0;
	width: 210px;
	visibility: hidden;
	z-index: 1;
}
#menu li ul {
	overflow: hidden;
}
#menu > li:hover > ul {
	visibility: visible;
}
#menu li li a.parent:after,
#column-left.active #menu > li a.parent:after {
	font-family: "Font Awesome 5 Free";
	content: "\f107";
	color: #9ca3af;
	margin-top: 2px;
	float: right;
	margin-right: 8px;
}
#menu li li.open > a.parent:after,
#column-left.active #menu > li.open > a.parent:after,
#column-left.active #menu > li li.open > a.parent:after {
	content: "\f106";
}
#menu li ul a {
	padding-left: 0;
}
#menu li li ul a {
	padding-left: 40px;
}
#menu li li li ul a {
	padding-left: 60px;
}
#menu li li li li ul a {
	padding-left: 80px;
}
#column-left.active {
	width: 235px;
}
#column-left.active #menu li i {
	font-size: 16px;
}
#column-left.active #menu > li > a > span {
	display: inline;
}
#column-left.active #menu > li > ul {
	position: relative;
	left: auto;
	top: auto;
	width: auto;
	visibility: visible;
}

/* =======================================================
   NAV – TABS
   ======================================================= */

.nav > li.disabled > a {
	color: #6b7280;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
	color: #9ca3af;
}

.nav-tabs > li > a {
	color: #9ca3af;
	border-radius: 6px 6px 0 0;
}
.nav-tabs > li > a:hover {
	border-color: #0b1120 #0b1120 #111827;
}
.nav-tabs {
	margin-bottom: 25px;
	border-bottom: 1px solid #1f2937;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
	font-weight: 400;
	color: #f9fafb;
	border: 0;
	background-color: #1d8cf8;
}

.form-control:hover {
	border: 1px solid #9ca3af;
	border-top-color: #6b7280;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, .25);
}

/* =======================================================
   REQUIRED & TOOLTIP ICONS
   ======================================================= */

div.required .control-label:not(span):before,
td.required:before {
	content: '* ';
	color: #f97316;
	font-weight: bold;
}
.table thead td span[data-toggle="tooltip"]:after,
label.control-label span:after {
	font-family: "Font Awesome 5 Free";
	color: #1d8cf8;
	content: "\f059";
	margin-left: 4px;
}

/* =======================================================
   TABLES
   ======================================================= */

.table thead td {
	font-weight: bold;
}
.table thead > tr > td,
.table tbody > tr > td {
	vertical-align: middle;
}
.table a.asc:after {
	content: " \f107";
	font-family: "Font Awesome 5 Free";
	font-size: 14px;
	margin-left: 5px;
}
.table a.desc:after {
	content: " \f106";
	font-family: "Font Awesome 5 Free";
	font-size: 14px;
	margin-left: 5px;
}
.table {
	margin-bottom: 0;
	color: #e5e7eb;
}
.table-bordered {
	border: 1px solid #1f2937;
}
.table thead tr td,
.table thead tr th {
	font-weight: 700;
	border-left: 0;
	border-right: 0;
	padding-top: 15px;
	padding-bottom: 10px;
}
.table > tbody > tr > td {
	border: 0;
}
.table input[type=checkbox]:hover,
.table tbody tr td:first-child:hover {
	cursor: pointer;
}

/* =========================================
   Customer Group Price – vnútorná tabuľka
   ========================================= */

.cg-price-table {
  background: #020617 !important;
  border-color: #1f2937 !important;
  margin-bottom: 0;
  width: 100%;
}

.cg-price-table thead tr:first-child td {
  background: #020617 !important;
  color: #a5b4fc !important;         /* jemná svetlá fialovo-sivá (ako admin nadpisy) */
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-color: #1f2937 !important;
  padding: 6px 8px;
}

/* riadky */
.cg-price-table tr td {
  background: #020617 !important;
  color: #e5e7eb !important;         /* svetlá biela ako celý admin */
  border-color: #1f2937 !important;
  padding: 4px 8px;
  vertical-align: middle;
}

/* názvy skupín - ešte jemnejšie */
.cg-price-table td.text-left {
  font-size: 0.80rem;
  font-weight: 500;
  color: #d1d5db !important;        /* svetlosivá, ideálne viditeľná */
}

/* inputy */
.cg-price-table input.form-control {
  background: #0b1120 !important;   /* tmavší box ako okolie */
  border-color: #4b5563 !important;
  color: #f9fafb !important;
  height: 32px !important;
  font-size: 13px;
  border-radius: 6px;
}

/* fokus – rovnaký modrý efekt ako zvyšok adminu */
.cg-price-table input.form-control:focus {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 1px rgba(59,130,246,0.45);
}

/* =======================================================
   PAGINATION
   ======================================================= */

.row > .col-sm-6.text-right {
	padding: 25px 25px 15px;
}

.pagination {
	margin: 0;
	position: relative;
	top: 10px;
	left: 25px;
}
.pagination > li > a,
.pagination > li > span {
	border: 1px solid #1f2937;
	color: #1d8cf8;
	background: #020617;
}
.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
	background: #1d8cf8;
	border-color: #1d8cf8;
	color: #0b1120;
}

/* =======================================================
   FORMS / GROUPS
   ======================================================= */

.form-group {
	padding-top: 15px;
	padding-bottom: 15px;
	margin-bottom: 0;
}
.form-group + .form-group {
	border-top: 1px solid #1f2937;
}
.form-group ul.dropdown-menu {
	width: auto;
	border: 0;
}
.form-group ul.dropdown-menu > li a {
	line-height: 30px;
}

/* =======================================================
   PANELY & WELL – widget štýl
   ======================================================= */

.panel {
	border-radius: 12px;
	background: #111827;
	border: 1px solid #1f2937;
	color: #e5e7eb;
	box-shadow: 0 20px 40px rgba(15, 23, 42, .7);
}
.panel .panel-heading {
	position: relative;
	border-radius: 12px 12px 0 0;
}

.panel-heading h3 i {
	margin-right: 8px;
}
.panel-heading i {
	font-size: 16px;
	font-weight: 500;
}
.panel-heading h3 {
	font-size: 16px;
	font-weight: 500;
	display: inline-block;
}

/* „primary“ panel */
.panel-primary {
	border: 1px solid #1d8cf8;
	border-top: 2px solid #1d8cf8;
}
.panel-primary .panel-heading {
	color: #bfdbfe;
	border-color: #1d8cf8;
	background: #020617;
}

/* default panel */
.panel-default {
	border: 1px solid #1f2937;
	border-top: 2px solid #334155;
	background-color: #111827;
	color: #e5e7eb;
	margin-bottom: 25px;
	box-shadow: 0 16px 40px rgba(15, 23, 42, .7);
}
.panel-default .panel-heading {
	color: #e5e7eb;
	border-color: #1f2937;
	background: #020617;
}

/* obrázkové thumb */
.img-thumbnail i {
	color: #0b1120;
	background-color: #e5e7eb;
	text-align: center;
	vertical-align: middle;
	width: 100px;
	height: 100px;
	padding-top: 20px;
	display: inline-block;
}
.img-thumbnail.list i {
	width: 40px;
	height: 40px;
	padding-top: 10px;
}

/* WELL – bočné boxy */
.well.well-sm {
	background-color: #020617 !important;
	color: #e5e7eb;
}
.well.well-sm div {
	padding: 6px 10px 5px;
}
.well.well-sm div > label {
	width: 100%;
}
.well.well-sm div > label input {
	margin-right: 7px;
}
.well.well-sm div:nth-child(odd) {
	background: #0b1120;
	color: #e5e7eb;
}
.well {
	background-color: #020617 !important;
	border-radius: 12px;
	border: 1px solid #1f2937;
}

/* panel titles */
.panel-heading .panel-title i {
	display: none;
}
.panel-heading h3 {
	font-size: 18px;
	color: #f9fafb;
	font-weight: 700;
	margin-bottom: 15px;
	padding-left: 25px;
}

/* =======================================================
   DASHBOARD TILE (widget cards)
   ======================================================= */

.tile {
	background: #111827;
	color: #e5e7eb;
	font-weight: 100;
	padding: 12px 16px;
	margin-bottom: 30px;
	border-radius: 16px;
	box-shadow: 0 18px 40px rgba(15, 23, 42, .9);
	transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
}
.tile:hover {
	transform: translateY(-3px);
	box-shadow: 0 30px 60px rgba(15, 23, 42, .95);
}
.tile a {
	color: #e5e7eb;
}
.tile-heading {
	padding: 4px 8px 6px;
	text-transform: uppercase;
	background-color: transparent;
	color: #9ca3af;
	font-size: 11px;
	letter-spacing: .12em;
	text-align: right;
}
.tile .tile-heading .pull-right {
	opacity: .7;
}
.tile-body {
	padding: 0 0 40px 0;
	color: #f9fafb;
	position: relative;
}
.tile .tile-body h2 {
	font-size: 32px;
}
.tile-footer {
	padding: 5px 8px 0;
	background-color: transparent;
	color: #9ca3af;
	text-align: right;
}
.tile .tile-footer a {
	color: #e5e7eb;
}
.tile .tile-body i {
	position: absolute;
	left: 30px;
	font-size: 28px;
	padding: 18px;
	border-radius: 100%;
	opacity: 1;
	color: #f9fafb;
	box-shadow: 0 10px 30px rgba(15, 23, 42, .8);
}

/* farebné kruhy pri konkrétnych ikonách */
.tile .tile-body .fa-users {
	background-image: linear-gradient(225deg, #fb8c04 0, #facc15 100%);
}
.tile .tile-body .fa-shopping-cart {
	background-image: linear-gradient(225deg, #22c55e 0, #4ade80 100%);
}
.tile .tile-body .fa-user {
	background-image: linear-gradient(225deg, #ef4444 0, #fb7185 100%);
}
.tile .tile-body .fa-credit-card {
	background-image: linear-gradient(225deg, #06b6d4 0, #38bdf8 100%);
}
.tile .tile-heading span.pull-right {
	display: none;
}

/* =======================================================
   BUTTONS
   ======================================================= */

.btn {
	box-shadow: 0 1px 0 rgba(0, 0, 0, .3);
	border: 1px solid transparent;
	font-size: 0.95rem;
	padding: 7px 16px;
}

.btn-default {
	color: #e5e7eb;
	background-color: #020617;
	border-color: #1f2937;
}
.btn-default:hover,
.btn-default.active:hover {
	color: #f9fafb;
	box-shadow: 0 3px 8px rgba(15, 23, 42, .9);
	background-color: #111827;
	border-color: #1f2937;
}
.btn-default.active,
.btn-default:focus,
.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover {
	color: #e5e7eb;
	background-color: #111827;
	border-color: #1f2937;
	box-shadow: inset 0 2px 0 rgba(0, 0, 0, .4);
}

.btn-info {
	background-color: #0ea5e9;
	border-color: #0ea5e9;
	color: #0b1120;
}
.btn-info:hover,
.btn-info.active:hover {
	color: #0b1120;
	box-shadow: inset 0 -1px 0 #0369a1;
	background-color: #38bdf8;
	border-color: #38bdf8;
}
.btn-info:focus,
.btn-info.active,
.btn-info:active,
.btn-info:active:focus,
.btn-info:active:hover {
	color: #0b1120;
	background-color: #0ea5e9;
	border-color: #0369a1;
	box-shadow: inset 0 2px 0 #0369a1;
}

.btn-primary {
	background-color: #1d8cf8;
	border-color: #1d8cf8;
	color: #0b1120;
}
.btn-primary:hover,
.btn-primary.active:hover {
	color: #0b1120;
	box-shadow: inset 0 -1px 0 #1d4ed8;
	background-color: #3b82f6;
	border-color: #3b82f6;
}
.btn-primary:focus,
.btn-primary.active,
.btn-primary:active,
.btn-primary:active:focus,
.btn-primary:active:hover {
	color: #0b1120;
	box-shadow: inset 0 2px 0 #1d4ed8;
	background-color: #2563eb;
	border-color: #1d4ed8;
	background-image: none;
}

.btn-success {
	background-color: #22c55e;
	border-color: #22c55e;
	color: #022c22;
}
.btn-success:hover,
.btn-success.active:hover {
	color: #022c22;
	box-shadow: inset 0 -1px 0 #15803d;
	background-color: #4ade80;
	border-color: #4ade80;
}
.btn-success:focus,
.btn-success.active,
.btn-success:active,
.btn-success:active:focus,
.btn-success:active:hover {
	color: #022c22;
	box-shadow: inset 0 2px 0 #15803d;
	background-color: #22c55e;
	border-color: #15803d;
	background-image: none;
}

.btn-warning {
	background-color: #facc15;
	border-color: #facc15;
	color: #422006;
}
.btn-warning:hover,
.btn-warning.active:hover {
	color: #422006;
	box-shadow: inset 0 -1px 0 #ca8a04;
	background-color: #fde047;
	border-color: #fde047;
}
.btn-warning:focus,
.btn-warning.active,
.btn-warning:active,
.btn-warning:active:focus,
.btn-warning:active:hover {
	color: #422006;
	box-shadow: inset 0 2px 0 #ca8a04;
	background-color: #facc15;
	border-color: #ca8a04;
	background-image: none;
}

.btn-danger {
	background-color: #ef4444;
	border-color: #ef4444;
	color: #450a0a;
}
.btn-danger:hover,
.btn-danger.active:hover {
	color: #450a0a;
	box-shadow: inset 0 -1px 0 #b91c1c;
	background-color: #f97373;
	border-color: #f97373;
}
.btn-danger:focus,
.btn-danger.active,
.btn-danger:active,
.btn-danger:active:focus,
.btn-danger:active:hover {
	color: #450a0a;
	box-shadow: inset 0 2px 0 #b91c1c;
	background-color: #ef4444;
	border-color: #b91c1c;
	background-image: none;
}

button {
	outline: 0 !important;
}

/* =======================================================
   FOOTER
   ======================================================= */

#footer {
	height: 100px;
	text-align: center;
}
#footer,
#footer a {
	padding-top: 40px;
	color: #9ca3af;
}
#footer a:hover {
	color: #1d8cf8;
}

/* =======================================================
   LOGIN PAGE
   ======================================================= */

.login-wrap {
	width: 400px;
	margin: 55px auto;
	border-top: 2px solid #1d8cf8;
	border-radius: 12px;
	background: #020617;
	box-shadow: 0 20px 40px rgba(15, 23, 42, .9);
}
.panel-body.login-page {
	padding: 20px;
}
.login-page .form-group {
	border-top: 0;
}
.login-page .form-group label {
	display: none;
}
.login-page .btn {
	width: 100%;
	padding: 12px 0 13px;
	margin-top: 15px;
}
.login-page .btn i {
	display: none;
}
.login-page .help-block {
	text-align: right;
	margin-top: 10px;
}
.login-page .input-group-addon {
	display: none;
}
.login-page .input-group input {
	border-radius: 8px !important;
}
.login-page .input-group {
	width: 100%;
}
.login-wrap .panel-title {
	font-size: 18px;
	font-weight: 100;
	text-align: center;
	margin-top: 10px;
}

/* =======================================================
   DROBNE IKONY, ALERTY, ATĎ.
   ======================================================= */

.table thead td span[data-toggle=tooltip]:after,
label.control-label span:after {
	color: #1d8cf8;
}
.nav[id$=language] > li > a > img {
	position: relative;
	right: 5px;
	top: -2px;
}
.btn > i[class^=fa] {
	font-size: 16px;
}
.input-group-btn .btn .fa {
	font-size: 18px;
}

/* ALERTY v Google farbách, ale na tmavom pozadí */
.alert {
	padding: 15px;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 600 !important;
	position: relative;
	border-radius: 0px;
	color: #f9fafb;
	border: 0;
}
.alert .close {
	right: 0;
	color: #0b1120;
	text-shadow: none;
	opacity: 1;
}
.alert > i {
	margin: 0 10px 0 5px;
	font-size: 18px;
}
.alert-link {
	color: #0b1120 !important;
	text-decoration: underline;
	font-weight: 400 !important;
}
.alert-info {
	background-color: #1d8cf8;
}
.alert-success {
	background-color: #22c55e;
}
.alert-warning {
	background-color: #facc15;
}
.alert-danger {
	background-color: #ef4444;
}

.cell-detail-description {
	font-size: .92rem;
	color: #9ca3af;
	display: block;
}

/* =======================================================
   RESPONSIVE
   ======================================================= */

@media (max-width: 767px) {
	#header .navbar-header {
		margin-right: 0;
		margin-left: 0;
		float: left;
	}

	#column-left {
		overflow: hidden;
		display: none;
	}

	#column-left + #content {
		margin-left: 0;
	}

	#column-left + #content + #footer {
		margin-left: 0;
	}

	#column-left.active + #content {
		position: relative;
		left: 235px;
	}

	#column-left.active + #content + #footer {
		position: relative;
		left: 235px;
	}

	ul.nav.pull-left.addBtn {
		width: 55px;
		border-right: 0;
	}

	ul.nav.pull-left.addBtn > li,
	ul.nav.pull-left.addBtn > li > a {
		width: 55px;
	}

	.page-header h1 {
		position: static;
	}
}

@media (min-width: 768px) {
	#column-left.active {
		overflow: auto;
	}

	#column-left.active + #content {
		margin-left: 235px;
	}

	#column-left.active + #content + #footer {
		margin-left: 235px;
	}

	.table-responsive {
		overflow-x: hidden;
	}
}

/* skrytie ľavého brandu v headeri */
#header .container-fluid .pull-left {
	display: none;
}

/* zoznamy, tabuľky – transparentný rad */
#vmap,
.list-group-item,
.table-striped > tbody > tr:nth-of-type(odd),
.table-hover > tbody > tr:hover {
	background: transparent !important;
}

/* text vo flot grafoch / legendy */
.flot-text,
.panel-body legend {
	color: #e5e7eb;
}

/* Summernote editor – svetlejší blok */
.note-editor.note-airframe,
.note-editor.note-frame {
	background: #020617 !important;
	color: #e5e7eb;
}

.checkbox label,
.dropdown-header,
.form-group div,
.modal-body legend {
	color: #e5e7eb;
}

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
	border: 1px solid #1f2937;
}

/* modálne okná */
.modal-footer {
	text-align: center;
}
/* Modal – aby ne splýval s pozadím */
.modal-content {
  background: #020617;          /* veľmi tmavá modrá (o kúsok svetlejšia než čistá čierna) */
  border-radius: 0.75rem;
  border: 1px solid #4b5563;    /* jemný rámik */
}

/* Hlavička modalu */
.modal-header,
.modal-footer {
  background: #111827;          /* tmavý panel, ale odlíšený od pozadia */
  border-color: #1f2937;
}

.modal-title {
  color: #f9fafb;               /* takmer biela */
  font-weight: 700;
}

/* Červený bezpečnostný pruh / alert v modale */
.modal .alert-danger {
  background-color: #b91c1c;    /* výrazná červená */
  border-color: #fca5a5;
  color: #fef2f2;
}

/* Krížik vpravo hore */
.modal-header .close {
  color: #f9fafb;
  opacity: 0.9;
}

/* custom css admin shop-net – koniec */

/* === ADMIN TOPBAR – NOVÝ RESPONSIVE HEADER (CLEAN) === */

#header {
	background-color: #020617;
	border-bottom: 1px solid #111827;
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.8);
}

/* Flex wrapper */
.admin-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 12px;
	gap: 12px;
}

/* Strany */
.topbar-left,
.topbar-middle,
.topbar-right {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Hamburger */
.topbar-burger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	border: 1px solid transparent;
	background: #03a9f4;
	cursor: pointer;
	color: #e5e7eb;
}
.topbar-burger i {
	font-size: 16px;
}

/* Logo */
.topbar-logo img {
	height: 26px;
	width: auto;
	display: block;
}

/* ===== TOPBAR BUTTONS – spoločný štýl pre všetko ===== */
/* Quick view, Quick Search, cache, zvonček, profil, logout */

#header .btn-topbar,
#header .btn-topbar-icon,
#header .topbar-profile {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 0px;
	border: 1px solid #1f2937;
	background: rgba(15, 23, 42, 0.9);
	color: #e5e7eb;
	font-size: 13px;
	line-height: 1;
	white-space: nowrap;
}

#header .btn-topbar i,
#header .btn-topbar-icon i,
#header .topbar-profile i {
	color: #9ca3af;
	font-size: 13px;
}

/* čisto ikonové gombíky (cache, zvonček, logout) môžu byť menšie */
#header .btn-topbar-icon {
	width: 50px;
	height: 50px;
	justify-content: center;
	padding: 0;
}

/* profil – avatar + meno */
.topbar-profile img {
	width: 28px;
	height: 28px;
	border-radius: 999px;
}
.topbar-profile span {
	font-size: 13px;
}

/* Aktívny / hover stav – rovnaký pre všetky */
#header .btn-topbar:hover,
#header .btn-topbar:focus,
#header .open > .btn-topbar,
#header .btn-topbar-icon:hover,
#header .btn-topbar-icon:focus,
#header .open > .btn-topbar-icon,
#header .topbar-profile:hover,
#header .topbar-profile:focus,
#header .open > .topbar-profile {
	background: rgba(30, 64, 175, 0.95);
	border-color: #1d4ed8;
	color: #e5e7eb;
}

#header .btn-topbar .label,
#header .btn-topbar-icon .label {
	margin-right: 4px;
	border-radius: 999px;
}

/* zrušenie starých floatov */
#header .navbar-header,
#header .navbar-right,
#header .nav {
	float: none;
}

/* ===== QUICK SEARCH DROPDOWN – TOPBAR ===== */

#header .topbar-search .btn-topbar {
	/* dedí základ z .btn-topbar – tu len ak chceš iné drobnosti */
}

#header .dropdown-search {
	min-width: 260px;
	padding: 12px 14px;
	margin-top: 4px;
	background: #020617;
	border-radius: 0.75rem;
	border: 1px solid #1f2937;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
}
#header .dropdown-search .form-group {
	margin-bottom: 8px;
}
#header .dropdown-search .form-control {
	background: #020617;
	border-color: #4b5563;
	color: #e5e7eb;
	font-size: 13px;
	height: 32px;
	border-radius: 0.5rem;
}
#header .dropdown-search .form-control::placeholder {
	color: #9ca3af;
}
#header .dropdown-search .form-control:focus {
	border-color: #3b82f6;
	box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.45);
}
#header .dropdown-search .btn {
	height: 34px;
	font-size: 13px;
	border-radius: 999px;
}

/* ===== TOPBAR DROPDOWN PANELY – cache, alerts, profil ===== */

#header .clear-dropdown,
#header .alerts-dropdown,
#header .dropdown-panel,
#header .profile-menu {
	min-width: 260px;
	padding: 10px 14px 12px;
	margin-top: 4px;
	background: #020617;
	border-radius: 0.75rem;
	border: 1px solid #1f2937;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
}

/* Hlavičky v dropdownoch */
#header .clear-dropdown .dropdown-header,
#header .alerts-dropdown .dropdown-header,
#header .profile-menu .dropdown-header {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #9ca3af;
	padding: 4px 2px 6px;
}

/* Riadky v cache dropdown-e */
#header .clear-dropdown > li > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 6px 4px;
	font-size: 12px;
	color: #e5e7eb;
}
#header .clear-dropdown > li > a:hover {
	background: rgba(15, 23, 42, 0.85);
}

/* Malé žlté buttony v cache */
#header .clear-dropdown .btn-warning {
	border-radius: 12px;
	font-size: 11px;
	padding: 2px 8px;
}
#header #button-clear-all {
	border-radius: 999px;
	font-size: 12px;
}

/* Alerts dropdown (zvonček) */
#header .alerts-dropdown > li > a {
	padding: 6px 4px;
	font-size: 12px;
	color: #e5e7eb;
}
#header .alerts-dropdown > li > a:hover {
	background: rgba(15, 23, 42, 0.85);
}

/* Profil dropdown */
#header .profile-menu li > a {
	padding: 6px 4px;
	font-size: 12px;
	color: #e5e7eb;
}
#header .profile-menu li > a:hover {
	background: rgba(15, 23, 42, 0.85);
}
#header .profile-menu i {
	width: 16px;
	margin-right: 6px;
	text-align: center;
}

/* ===== RESPONSIVE ===== */

/* Desktop – Quick tlačidlá v strede */
@media (min-width: 768px) {
	.topbar-middle {
		flex: 1;
		justify-content: end;
	}
	.topbar-left {
		min-width: 120px;
	}
	.topbar-right {
		justify-content: flex-end;
		min-width: 160px;
	}
}

/* Mobil – 2 riadky: hore burger+logo+profil, dole Quick buttons */
@media (max-width: 767px) {
	.admin-topbar {
		flex-wrap: wrap;
		row-gap: 6px;
	}
	.topbar-left {
		order: 1;
	}
	.topbar-right {
		order: 2;
		margin-left: auto;
	}
	.topbar-middle {
		order: 3;
		width: 100%;
		justify-content: space-between;
	}
	/* na veľmi úzkom mobile skry text, nech ostanú ikony */
	.admin-topbar.narrow .btn-topbar span {
		display: none;
	}
}

/* =========================================
   1) TABLET / MENŠIE – skrátiť Quick view / Quick Search
   ========================================= */
@media (max-width: 992px) {
  /* ikonkám necháme len ikonku + bublinu, text skryjeme */
  #header .topbar-middle .btn-topbar span {
	display: none;              /* schová text "Quick view", "Quick Search" */
  }

  #header .topbar-middle .btn-topbar {
	padding: 6px 8px;
	min-width: 34px;
	gap: 4px;
  }
}

/* =========================================
   2) Zväčšiť priestor pod headerom,
	  aby sa h1/breadcrumbs nikdy neprekrývali
   ========================================= */
@media (max-width: 992px) {
  /* podľa šablóny: väčšinou je to .page-header alebo .breadcrumb
	 Takto im pridáme malý odsadený top, aby nešli do topbaru */
  .page-header,
  .breadcrumb {
	margin-top: 12px;
  }
}

/* =========================================
   3) Voliteľne – na úplne malých mobiloch
	  presunúť Quick view + Search pod logo na vlastný riadok
   ========================================= */
@media (max-width: 768px) {
  #header .admin-topbar {
	flex-wrap: wrap;
  }

  #header .topbar-left {
	flex: 0 0 auto;
  }

  #header .topbar-middle {
	order: 3;
	width: 100%;
	justify-content: end;
	margin-top: 6px;
  }

  #header .topbar-right {
	order: 2;
	margin-left: auto;
  }
}