@CHARSET "UTF-8";

body
{
	text-align: center;
	color: #ffffff;
	background: #F82C47; /* Červené pozadí místo černého */
	margin: 0;
	font-size: 14px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	min-height: 100vh;
	padding: 20px; /* Přidáno odsazení kolem celé stránky */
	box-sizing: border-box;
}
body, html: { height: 100%; }
p{
line-height: 150%;
}

hr{
background-color: #333333;
border: 0;
height: 1px;
}

a{
color: #F82C47;
}

a:hover{
	text-decoration: underline;
	color: #d91e41;
}

div#main
{
	margin-top: 0; /* Změněno z 20px na 0 */
	padding-top: 0px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: 1200px;
	text-align: center;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	overflow: visible;
	height: auto;
	min-height: 30px;
	background: #2a2a2a;
	border: 1px solid #333333;
	box-shadow: 0 4px 20px rgba(0,0,0,0.3);
	position: relative;
	border-radius: 8px; /* Přidáno zaoblení rohů */
}

div#head{
	margin-top: 0px;
	padding-top: 20px;
	position: relative;
	width: 100%;
	height: 281px;
	color: #ffffff;
	background: #222222;
	border-radius: 8px 8px 0 0; /* Zaoblení pouze horních rohů */
}

#logo{
	background-repeat:no-repeat;
	position: absolute;
  height: 93px;
	width: 241px;
	height: 90px;
	top: 55px;
	left: 30px;
}

#verLine{
	background-color: #ffffff;
	font-size: 28px;
	position: absolute;
	width: 2px;
	height: 171px;
	top: 45px;
	left: 300px;
}

#head_text1{
	font-size: 28px;
	position: absolute;
	top: 45px;
	left: 320px;
	color: #ffffff;
	font-weight: 600;
}

#head_text2{
	font-size: 18px;
	position: absolute;
	top: 83px;
	left: 320px;
	color: #ffffff;
	font-weight: 400;
}

#hotline{
	font-size: 17px;
	position: absolute;
	top: 50px;
	left: 700px;
}

#hotnumber{
	font-size: 26px;
	position: absolute;
	top: 70px;
	left: 700px;
	font-weight: bold;
}
#hotemail{
	font-size: 26px;
	position: absolute;
	top: 96px;
	left: 700px;
	font-weight: bold;
  white-space: nowrap;
}
#hothtml{
	font-size: 26px;
	position: absolute;
	top: 160px;
	left: 700px;
	font-weight: bold;
}

#left{
	position: relative;
	width: 320px;
	min-height: 650px;
	float: left;
	background-color: #2a2a2a; /* Vráceno na původní barvu */
	background-repeat:no-repeat;
	background-position: right top;
	margin-bottom: 0; /* Změněno z 40px na 0 - odstraněno spodní odsazení */
	padding: 0;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	border-radius: 0 0 0 8px; /* Zaoblení levého dolního rohu */
}

#right{
	margin-left: 320px;
	min-height: 450px;
	text-align: left;
	margin-top: 0px;
	padding: 30px;
	padding-left: 0px;
	padding-bottom: 20px; /* Sníženo z 40px na 20px */
	background: #2a2a2a;
	box-sizing: border-box;
	border-radius: 0 0 8px 0; /* Zaoblení pravého dolního rohu */
}

.menu{
	width: 100%;
	border: none;
	position: relative;
	top: 0;
	right: 0;
	background: #2a2a2a; /* Vráceno na původní barvu */
	box-shadow: none;
	z-index: 10;
	margin-top: 0;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.menu_top{
	background: #F82C47;
	height: 4px;
}

.menu_row{
	background: #2a2a2a; /* Vráceno na původní barvu */
	border-bottom: 1px solid #333333; /* Vráceno na původní barvu */
	height: 50px;
	padding: 0px;
	margin: 0px;
	border-spacing: 0px;
	text-align: left;
	padding-left: 30px;
	padding-right: 30px;
	transition: all 0.2s ease;
	position: relative;
	flex-shrink: 0;
}

.menu_row::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0;
	background: #F82C47;
	transition: width 0.2s ease;
}

.menu_row a, .menu_row_last a{
	color: #ffffff;
	text-decoration: none;
	width: 100%;
	display: block;
	padding: 15px 30px;
	font-weight: 500;
	font-size: 14px;
	position: relative;
	z-index: 2;
	transition: all 0.2s ease;
	box-sizing: border-box;
}

.menu_row a:hover, .menu_row_last a:hover{
	text-decoration: none;
	font-weight: 600;
	color: #F82C47;
}

.menu_row:hover {
	background: #333333;
}

.menu_row:hover::before {
	width: 4px;
}

.menu_row_last{
	background: #2a2a2a; /* Vráceno na původní barvu */
	border-bottom: none;
	height: 50px;
	text-align: left;
	padding-left: 30px;
	padding-right: 30px;
	transition: all 0.2s ease;
	position: relative;
	flex-shrink: 0;
}

.menu_row_last::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0;
	background: #F82C47;
	transition: width 0.2s ease;
}

.menu_row_last:hover {
	background: #333333;
}

.menu_row_last:hover::before {
	width: 4px;
}

.menu_bottom{
	background: #F82C47;
	height: 4px;
	flex-grow: 1;
	min-height: 4px;
}

h1{
color: #F82C47;
font-size: 24px;
font-weight: 600;
margin: 0 0 20px 0;
}

h2{
color: #F82C47;
font-size: 21px;
font-weight: 600;
margin: 0 0 20px 0;
}

h3{
color: #F82C47;
font-size: 18px;
font-weight: 600;
margin: 0 0 15px 0;
}

.valid,.error{
position:absolute; top:0; left:0; right:0; bottom:0; z-index:1000000;
background:  url('alert_back.png');
}

.valid div{
	background:  #2a2a2a url('alert_valid.png')  no-repeat;
}

.error div{
	background:  #2a2a2a url('alert_error.png')  no-repeat;
}

.valid div,.error div{
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -225px;
	margin-top: -150px;
	width: 301px;
	min-height:150px;
    height:auto !important;
    height:150px;
	background-position: 20px center;
	text-align: left;
	padding-left: 150px;
	padding-right: 25px;
	padding-top: 25px;
	padding-bottom: 25px;
	color: #ffffff;
}

.top_done{
padding:0 !important;
margin:0 !important;
margin-left: -225px !important;
margin-top: -159px !important;
background-color: transparent !important;
background-position: 0 0 !important;
z-index:1000009 !important;
min-width: 478px !important;
min-height: 9px !important;
width: 478px !important;
height: 9px !important;
background-image: url('/styles/gigaserver/done_message/top.png') !important;
}

.bottom_done{
padding:0 !important;
margin:0 !important;
margin-left: -225px !important;
background-color: transparent !important;
background-position: 0 0 !important;
z-index:1000009 !important;
min-width: 478px !important;
min-height: 9px !important;
width: 478px !important;
height: 9px !important;
background-image: url('/styles/gigaserver/done_message/bottom.png') !important;
}

.rounded input[type=text], .rounded input[type=password], .rounded select {
border: 2px solid #333333;
background: #2a2a2a;
width: auto;
min-width: 200px;
font-size: 14px;
color: #ffffff;
padding: 12px 15px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
transition: border-color 0.2s ease;
}

.rounded input[type=text]:focus, .rounded input[type=password]:focus, .rounded select:focus {
outline: none;
border-color: #F82C47;
}

.rounded input{
outline: none;
background-color: #2a2a2a;
color: #ffffff;
}

.rounded, .rounded2 {
background: transparent;
padding: 0;
font-size: 14px;
width: auto;
height: auto;
display: inline-block;
position: absolute;
left: 120px;
top: -5px;
font-weight: normal;
}

.rounded_textar{
    background: #2a2a2a;
    height: 60px;
}

.input_label, .textar_label{
	position:relative;
	width: 400px;
	height: 50px;
	margin: 10px 0;
 	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #ffffff;
}

.textar_label{
        height: 60px;
}

td, th{
padding-left: 15px;
padding-right: 15px;
padding-top: 6px;
padding-bottom: 6px;
color: #ffffff;
border-bottom: 1px solid #333333;
}

.main_table tr:nth-child(odd), .email_table tr:nth-child(odd), .main_table_ftp tr:nth-child(odd){
	background: #1f1f1f;
}

.main_table tr:nth-child(even), .email_table tr:nth-child(even), .main_table_ftp tr:nth-child(even){
	background: #2a2a2a;
}

.main_table tr:nth-child(1){
  background: #F82C47;
  color: #fff;
	font-weight: 600;
}

.main_table_ftp td:nth-child(1){
  background: #F82C47;
  color: #fff;
	font-weight: 600;
}

.main_table_ftp td:nth-child(1) a, .main_table tr:nth-child(1) a{
  color: #fff;
}

/* Základní nastavení pro všechny tabulky */
.main_table, .main_table_ftp{
	width: 100%;
	border: 1px solid #333333;
	border-collapse: collapse;
	margin: 20px 0;
	background: #2a2a2a;
	table-layout: auto;
}

/* Zvýraznění ohraničení pro lepší čitelnost */
.main_table td, .main_table th,
.main_table_ftp td, .main_table_ftp th {
	border-bottom: 1px solid #333333;
	border-right: 1px solid #333333;
}

.main_table td:first-child, .main_table th:first-child,
.main_table_ftp td:first-child, .main_table_ftp th:first-child {
	border-left: 1px solid #333333;
}

/* DNS tabulka - kompaktnější řádky */
.dns_table {
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
}

.dns_table td, .dns_table th {
	padding: 4px 10px;
}

.dns_table input[type="text"] {
	padding: 3px 6px;
	width: 90%;
}

/* Tabulka emailů - na plnou šířku */
.email_table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	background: #2a2a2a;
	border: 1px solid #333333;
}

.email_table td, .email_table th {
	border-bottom: 1px solid #333333;
	border-right: 1px solid #333333;
}

.email_table td:first-child, .email_table th:first-child {
	border-left: 1px solid #333333;
}

.email_table th{
	background: #F82C47;
	color: #fff;
	font-weight: 600;
}

/* Kompaktnější rozměry pro hlavní tabulky - pouze výška řádků */
.main_table {
	width: 100%;
}

/* Specifické nastavení pro různé typy tabulek */
.main_table.compact {
	width: 100%;
}

.main_table.compact td, .main_table.compact th {
	padding: 4px 12px;
}

/* FTP tabulka kompaktnější řádky */
.main_table_ftp {
	width: 100%;
}

#vyber_domeny_top_table{
width: 255px;
}

#vyber_domeny_top_table tr:nth-child(odd){
	background-color: #1f1f1f;
}

#vyber_domeny_top_table tr:nth-child(even){
	background-color: #2a2a2a;
}

#vyber_domeny_top_table tr{
	color: #ffffff;
}

#vyber_domeny_top_table td{
	color: #ffffff;
	padding: 12px 15px;
	vertical-align: middle;
}

#vyber_domeny_top_table tr:hover, #vyber_domeny_top_table tr:nth-child(odd):hover{
	background-color: #F82C47;
	font-weight: bold;
	color: #fff;
}

#vyber_domeny_top_table tr:hover td{
	color: #ffffff;
}

.main_table td:nth-child(1), .email_table td:nth-child(1), .main_table_ftp td:nth-child(1){
	height: 27px;
}

.main_table td, main_table_ftp td{
	font-size: 14px;
}

.main_table td input[type=text], .main_table td input[type=password], .main_table td select,
.email_table td input[type=text],.email_table td input[type=password], .email_table td select,
.main_table_ftp td input[type=text],.main_table_ftp td input[type=password], .main_table_ftp td select{
	font-size: 14px;
	padding: 4px 8px;
	position:relative;
	width: 95%;
	max-width: none;
	border: 2px solid #333333;
	background: #2a2a2a;
	color: #ffffff;
}

.main_table td input[type=text]:focus, .main_table td input[type=password]:focus, .main_table td select:focus,
.email_table td input[type=text]:focus,.email_table td input[type=password]:focus, .email_table td select:focus,
.main_table_ftp td input[type=text]:focus,.main_table_ftp td input[type=password]:focus, .main_table_ftp td select:focus{
	outline: none;
	border-color: #F82C47;
}

.submit_in_table{
	background-color: #333333;
}

.main_table a, main_table_ftp a{
	font-size: 14px;
	cursor: pointer;
}

/* Aktivní položka menu */
.menu_row.active {
	background-color: #F82C47;
}

.menu_row.active a {
	color: #ffffff;
	font-weight: bold;
}

.menu_row.active:hover {
	background-color: #d91e41;
}

/* Clearfix pro float layout */
#main::after {
	content: "";
	display: table;
	clear: both;
}

/* Speciální nastavení pro přihlašovací stránku */
.login-page #left {
	display: none;
}

.login-page #right {
	margin-left: 0;
	width: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 400px;
	padding: 50px 30px;
}

.login-page #right h2 {
	text-align: center;
	margin-bottom: 30px;
}

.login-page #right form {
	max-width: 400px;
	width: 100%;
}

.login-page .input_label {
	width: 100%;
	max-width: 350px;
	margin: 20px auto;
	text-align: left;
}

.login-page .rounded {
	position: static;
	width: 100%;
	margin-top: 10px;
}

.login-page .rounded input[type=text], 
.login-page .rounded input[type=password] {
	width: 100%;
	max-width: none;
}

#divSelectedDom{
	position: relative;
	background-color: transparent;
	border: none;
	top: -37px;
	color: #ffffff;
	left: 10px;
	width: 200px;
	font-size: 14px;
	padding: 8px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 33px;
	box-sizing: border-box;
	cursor: pointer;
	transition: color 0.2s ease;
}

#divSelectedDom:hover {
	color: #F82C47;
}

/* Dropdown kontejner - bez posuvníků a lepší design */
#vyber_domeny_top {
	background-color: #2a2a2a !important;
	border: 2px solid #333333 !important;
	border-radius: 8px !important;
	box-shadow: 0 8px 25px rgba(0,0,0,0.4) !important;
	width: 280px !important;
	max-height: 300px !important;
	height: auto !important;
	overflow-y: auto !important;
	overflow-x: hidden !important;
}

/* Vlastní scrollbar pro dropdown */
#vyber_domeny_top::-webkit-scrollbar {
	width: 8px;
}

#vyber_domeny_top::-webkit-scrollbar-track {
	background: #1a1a1a;
	border-radius: 4px;
}

#vyber_domeny_top::-webkit-scrollbar-thumb {
	background: #F82C47;
	border-radius: 4px;
}

#vyber_domeny_top::-webkit-scrollbar-thumb:hover {
	background: #d91e41;
}

/* Tabulka v dropdownu */
#vyber_domeny_top_table {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
	background: #2a2a2a;
}

#vyber_domeny_top_table tr {
	background-color: #2a2a2a !important;
	border-bottom: 1px solid #333333;
	transition: background-color 0.2s ease;
}

#vyber_domeny_top_table tr:last-child {
	border-bottom: none;
}

/* Přepsání existujících stylů pro střídavé řádky */
#vyber_domeny_top_table tr:nth-child(odd) {
	background-color: #2a2a2a !important;
}

#vyber_domeny_top_table tr:nth-child(even) {
	background-color: #2a2a2a !important;
}

#vyber_domeny_top_table td {
	color: #ffffff !important;
	padding: 12px 15px;
	vertical-align: middle;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	border: none;
}

/* Hover efekt pro položky */
#vyber_domeny_top_table tr:hover,
#vyber_domeny_top_table tr.vyber_domeny_top_hower:hover {
	background-color: #F82C47 !important;
	color: #ffffff;
}

#vyber_domeny_top_table tr:hover td,
#vyber_domeny_top_table tr.vyber_domeny_top_hower:hover td {
	color: #ffffff !important;
	font-weight: 600;
}

div#preloaded-images {
   position: absolute;
   overflow: hidden;
   left: -9999px;
   top: -9999px;
   height: 1px;
   width: 1px;
}

.vybrat_top {
	width: 149px;
	height: 33px;
	background: #F82C47;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #ffffff;
	font-size: 16px;
	font-weight: bold;
	padding: 0;
	border: 2px solid #F82C47;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s ease;
	text-align: center;
	line-height: 29px;
	box-sizing: border-box;
	display: inline-block;
}

.vybrat_top::before {
	content: "Vybrat";
}

.vybrat_top:hover {
	width: 149px;
	height: 33px;
	background: #d91e41;
	border-color: #d91e41;
	color: #ffffff;
	text-decoration: none;
}

.vybrat_top:active {
	width: 149px;
	height: 33px;
	background: #c0392b;
	border-color: #c0392b;
	color: #ffffff;
}

/* Preload třídy už nejsou potřeba, ale ponechávám pro kompatibilitu */
.vybrat_top_hover_preload {
	width: 149px;
	height: 33px;
	background: #d91e41;
	border: 2px solid #d91e41;
	color: #ffffff;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 16px;
	font-weight: bold;
	padding: 0;
	text-align: center;
	line-height: 29px;
	box-sizing: border-box;
}

.vybrat_top_hover_preload::before {
	content: "Vybrat";
}

.vybrat_top_clicked_preload {
	width: 149px;
	height: 33px;
	background: #c0392b;
	border: 2px solid #c0392b;
	color: #ffffff;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 16px;
	font-weight: bold;
	padding: 0;
	text-align: center;
	line-height: 29px;
	box-sizing: border-box;
}

.vybrat_top_clicked_preload::before {
	content: "Vybrat";
}

/* Responzivní úpravy pro dropdown */
@media (max-width: 768px) {
	#vyber_domeny_top {
		width: 250px !important;
		max-height: 250px !important;
		left: -10px !important;
	}
	
	#divSelectedDom {
		width: 180px;
		font-size: 13px;
	}
	
	#vyber_domeny_top_table td {
		padding: 10px 12px;
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	#vyber_domeny_top {
		width: 220px !important;
		max-height: 200px !important;
		left: -20px !important;
	}
	
	#divSelectedDom {
		width: 160px;
		font-size: 12px;
	}
	
	#vyber_domeny_top_table td {
		padding: 8px 10px;
		font-size: 12px;
	}
}

.tooltip:hover:after {
    content:attr(tip);
    position: absolute;
    display: inline;
    padding: 8px 12px;
    margin-left: 5px;
    max-width: 400px;
    background: #222222;
    color: #FFF;
    font-size: 14px;
    font-weight: normal;
    z-index: 99999;
    border: 1px solid #333333;
}

/* ZÁPATÍ ODSTRANĚNO - celá sekce #footer je vymazána */

.in_progress{
	color: #F82C47;
	border: 2px solid #F82C47;
	padding: 12px;
	background: #2a2a2a;
}

.is_on{
	width: 44px;
	height: 19px;
  float: right;
	background-image: url("butt-on.png");
}

.is_on:hover{
	width: 44px;
	height: 19px;;
	background-image: url("butt-off.png");
  cursor: pointer;
}

.is_off{
	width: 44px;
	height: 19px;
  float: right;
	background-image: url("butt-off.png");
}

.is_off:hover{
	width: 44px;
	height: 19px;;
	background-image: url("butt-on.png");
  cursor: pointer;
}

.button_href {
display: block;
width: 115px;
height: 25px;
background: #F82C47;
padding: 12px;
text-align: center;
color: white;
font-weight: 600;
text-decoration: none;
border: 2px solid #F82C47;
transition: all 0.2s ease;
}

.button_href:hover {
background: #d91e41;
border-color: #d91e41;
color: white;
text-decoration: none;
}

.inline_ok{
	min-height: 30px;
	margin: 15px;
	background-color: #27ae60;
	color: #fff;
	font-weight: bold;
	border: 0;
	padding: 18px;
	text-align:left;
	word-wrap: break-word;
}

.inline_fail{
	min-height: 30px;
	margin: 15px;
	background-color: #e74c3c;
	color: #fff;
	font-weight: bold;
	border: 0;
	padding: 18px;
	text-align:left;
	word-wrap: break-word;
}

.info, .success, .warning, .error2, .validation {
border: 2px solid;
margin: 10px 0px;
padding:15px 10px 15px 50px;
background-repeat: no-repeat;
background-position: 10px center;
}

.info {
color: #5dade2;
background-color: #1a2332;
border-color: #2980b9;
background-image: url('info.png');
}
.success {
color: #58d68d;
background-color: #1a2e1e;
border-color: #27ae60;
background-image:url('success.png');
}
.warning {
color: #f7dc6f;
background-color: #2e2a1a;
border-color: #f39c12;
background-image: url('warning.png');
}
.error2 {
color: #ec7063;
background-color: #2e1e1a;
border-color: #e74c3c;
background-image: url('error.png');
}

input[type='text'].watermark { 
color: #666666;
font-size:10px !important;
height:14px !important;
}

.token-field {
  font: 11px "Lucida Grande", "Trebuchet MS", Verdana, sans-serif;
  border: 1px solid #333333;
  padding: 0 3px 3px 3px;
  cursor: text;
  background: #2a2a2a;
  color: #ffffff;
}

.token-field .token {
  border: none;
  outline: 0 none;
  float: left;
  white-space: nowrap;
  background-image: url(token.gif);
  background-repeat: no-repeat;
  background-position: top left;
  text-decoration: none;
  color: #ffffff;
  margin-top: 3px;
  margin-right: 3px;
  cursor: default;
}
.token-field .token span {
  background-image: url(token.gif);
  background-repeat: no-repeat;
  background-position: top right;
  display: block;
}
.token-field .token span span {
  background-position: bottom right;
}
.token-field .token span span span {
  background-position: bottom left;
}
.token-field .token span span span span {
  background-image: none;
  padding: 2px 3px 2px 5px;
}
.token-field .token:hover {
  background-image: url(highlighted-token.gif);
}
.token-field .token:hover span {
  background-image: url(highlighted-token.gif);
}
.token-field .selected-token {
  background-image: url(selected-token.gif);
  color: #fff;
}
.token-field .selected-token span {
  background-image: url(selected-token.gif);
}
.token-field .selected-token:hover {
  background-image: url(selected-token.gif);
}
.token-field .selected-token:hover span {
  background-image: url(selected-token.gif);
}
.token-field .token span.token-x {
  background-image: url(transparent.gif);
  padding: 0 2px 0 3px;
  color: #acb9d3;
  display: inline;
  cursor: pointer;
  font-size: 12px;
  line-height: 11px;
  height: 11px;
  font-weight: bold;
}
.token-field .token:hover span.token-x {
  background-image: url(transparent.gif);
}
.token-field .token-input {
  float: left;
  margin-top: 3px;
}
.token-field .token-input input {
  font: 11px "Lucida Grande", "Trebuchet MS", Verdana, sans-serif;
  border: 0 none;
  outline: 0 none;
  width: 100%;
  background: transparent;
  color: #ffffff;
}
.token-field .token-input-sizer {
  font: 11px "Lucida Grande", "Trebuchet MS", Verdana, sans-serif;
  left: 0;
  position: relative;
  top: 0;
  display: block;
  overflow: hidden;
  height: 0;
  line-height: 0;
}

.btn {
  background: #F82C47;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  border: 2px solid #F82C47;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn:hover {
  background: #d91e41;
  border-color: #d91e41;
  text-decoration: none;
}

.btn-red {
  background: #e74c3c;
  border-color: #e74c3c;
}

.btn-red:hover {
  background: #c0392b;
  border-color: #c0392b;
}

.btn-orange {
  background: #f39c12;
  border-color: #f39c12;
}

.btn-orange:hover {
  background: #e67e22;
  border-color: #e67e22;
}

.dns_table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

.dns_table th, 
.dns_table td {
    border: 1px solid #333333;
		border-collapse: collapse;
    padding: 4px 10px; /* Menší padding pro nižší řádky */
}

.dns_table tbody:first-child tr{
    background-color: #F82C47 !important;
	color: white !important;
	font-weight: bold !important;
}

.dns_table tbody:nth-child(2n) tr
{
    background-color: #1f1f1f;
	color: #ffffff;
	font-weight: initial;
}

.dns_table tbody:nth-child(2n+1) tr{
    background-color: #2a2a2a;
	color: #ffffff;
	font-weight: initial;
}

.dns_table tbody:nth-child(2n+1) tr:last-child td, .dns_table tbody:nth-child(2n) tr:last-child td{
	border-bottom: 5px solid #F82C47;
}

.dns_table tbody:nth-child(2n):hover tr
{
    background-color: #333333;
}

.dns_table tbody:nth-child(2n+1):hover tr{
    background-color: #333333;
}

/* Menší input fieldy v DNS tabulce */
.dns_table input[type="text"] {
	padding: 3px 6px;
	width: 90%;
}

.input-group {
	display: table;
	border-collapse: collapse;
	width: 100%;
  }
  
  .input-group > * {
	display: table-cell;
	border: 1px solid #333333;
	vertical-align: middle;
  border: 1px solid #333333;
  }
  
  .input-group-icon {
	background-color: #222222;
	color: #ffffff;
	padding-left: 9px;
	  padding-right: 8px;
	  white-space: nowrap;
  }
  
  .input-group-area {
	width: 100%;
  }
  
  .input-group input {
	border: 0;
	display: block;
	width: 100% !important;
	background: #2a2a2a;
	color: #ffffff;
  }

/* Dropdown menu - dark design stejný jako ostatní selecty */
#vyber_domeny_top {
  border: 2px solid #333333;
  background: #2a2a2a;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

#vyber_domeny_top table {
  background: #2a2a2a;
  color: #ffffff;
}

#vyber_domeny_top td {
  background: inherit;
  color: #ffffff !important;
}

#dropdown img {
  border: none;
  background: transparent;
}

/* Všechny dropdown a select elementy dark theme */
#dropdown select,
#dropdown option,
select[name="system"],
select[name="perioda"],
select[name="newphp"],
select[name="err_rep"],
select[name="reg_glob"],
select[name="err_log"],
select[name="opcache"],
select[name="newQ"] {
  border: 2px solid #333333;
  background: #2a2a2a;
  padding: 8px 12px;
  font-size: 14px;
  color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  width: auto;
  min-width: 120px;
}

select:focus,
select[name="system"]:focus,
select[name="perioda"]:focus,
select[name="newphp"]:focus,
select[name="err_rep"]:focus,
select[name="reg_glob"]:focus,
select[name="err_log"]:focus,
select[name="opcache"]:focus,
select[name="newQ"]:focus {
  outline: none;
  border-color: #F82C47;
}

/* Submit tlačítka ve formulářích */
input[type="submit"] {
  background: #F82C47;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border: 2px solid #F82C47;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

input[type="submit"]:hover {
  background: #d91e41;
  border-color: #d91e41;
}

/* Speciální tabulky na email stránce */
table th[style*="background-color: #7BABAC"] {
  background-color: #F82C47 !important;
}

/* Vynucení tmavého tématu pro inline styly */
td[style*="background-color: #e9eaeb"] {
  background-color: #2a2a2a !important;
  color: #ffffff !important;
}

tr[style*="height: 66px;"] td {
  background-color: #2a2a2a !important;
  color: #ffffff !important;
}

/* Textarea */
textarea {
  border: 2px solid #333333;
  background: #2a2a2a;
  padding: 12px;
  font-size: 14px;
  color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  resize: vertical;
}

textarea:focus {
  outline: none;
  border-color: #F82C47;
}

/* Input checkboxes and radios */
input[type="checkbox"], input[type="radio"] {
  accent-color: #F82C47;
}

/* Scrollbar dark theme */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #333333;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #F82C47;
}

/* Progress bars */
div[style*="background: #FFB280"] {
  background: #F82C47 !important;
}

div[style*="border: 1px solid #F67C46"] {
  border-color: #333333 !important;
  background-color: #1a1a1a !important;
}

div[style*="border: 2px solid #DAEBF0"] {
  border-color: #333333 !important;
  background-color: #1a1a1a !important;
}

/* Vycentrování textu v progress barech */
div[style*="position:absolute; width: 100%;  padding: 4px;"] {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 20px !important;
  box-sizing: border-box !important;
}

/* Horizontální centrování textu v kvóta progress baru */
div[style*="position:absolute; left:0; font-size: 10px; width: 90%; font-weight:bold;"] {
  text-align: center !important;
}

/* Dropdown v záhlaví */
#dropdown{
	position: absolute;
	top: 150px;
	left: 320px;
	width: 260px;
	text-align: left;
	z-index: 999;
}

/* Vybrané doméně v dropdown - tmavé téma stejně jako selecty */
.vyber_domeny_top_hower {
  background: #2a2a2a;
  color: #ffffff;
}

.vyber_domeny_top_hower:hover {
  background: #F82C47 !important;
  color: #ffffff !important;
}

.vyber_domeny_top_hower td {
  color: #ffffff !important;
}

.vyber_domeny_top_hower:hover td {
  color: #ffffff !important;
}

/* Responzivní design */
@media (max-width: 1024px) {
	body {
		padding: 10px; /* Menší odsazení na mobilech */
	}
	
	div#main {
		margin: 0; /* Bez dodatečného marginu */
		width: auto;
	}
	
	#left {
		width: 100%;
		float: none;
		min-height: auto;
		margin-bottom: 0; /* Bez spodního marginu */
		padding: 0;
		border-radius: 0; /* Bez zaoblení na mobilech */
	}
	
	#right {
		margin-left: 0;
		padding: 20px;
		border-radius: 0; /* Bez zaoblení na mobilech */
	}
	
	div#head {
		border-radius: 8px 8px 0 0; /* Zachováno zaoblení hlavičky */
	}
	
	.menu {
		width: 100%;
		margin-top: 0;
		flex-grow: 1;
	}
	
	div#head {
		height: auto;
		padding: 20px;
	}
	
	#logo, #verLine, #head_text1, #head_text2, #hotline, #hotnumber, #hotemail, #hothtml {
		position: static;
		display: block;
		margin: 10px 0;
		text-align: center;
	}
	
	#dropdown {
		position: static;
		margin: 20px auto;
		text-align: center;
		width: auto;
	}
	
	/* Responzivní tabulky */
	.main_table, .main_table_ftp, .dns_table, .email_table {
		width: 100%;
		max-width: none;
		font-size: 11px;
	}
}

@media (max-width: 768px) {
	body {
		padding: 5px; /* Ještě menší odsazení na malých mobilech */
	}
	
	div#main {
		margin: 0;
	}
	
	#right {
		padding: 15px;
	}
	
	.main_table, .main_table_ftp, .dns_table, .email_table {
		font-size: 10px;
	}
	
	.main_table td, .main_table_ftp td, .dns_table td, .email_table td,
	.main_table th, .main_table_ftp th, .dns_table th, .email_table th {
		padding: 4px 3px;
	}
	
	.rounded input[type=text], .rounded input[type=password], .rounded select {
		width: 100%;
		max-width: 250px;
	}
	
	.input_label {
		width: 100%;
		height: auto;
		margin: 15px 0;
	}
	
	.rounded {
		position: static;
		width: 100%;
		margin-top: 10px;
	}
}