::-webkit-scrollbar{
	width: 0px;
}

/* ZĂĄkladnĂ­ styly */
body {
    background-color: #886732;
    color: #000;
    font-family: 'DomineDomine', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
	font-size: 16px;
}

h1, h2 {
    font-weight: 700;
    text-align: center;
    margin: 20px 0;
}

h1 {
    font-size: 2.5rem;
    color: #fff;
}

h2 {
    font-size: 1.8rem;
    color: #fff;
}

/* Odkazy */
a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d6fa5;
}

/* Tabulka s akcemi */
table.pricelist {
    width: 60%;
    margin: 30px auto;
    border-collapse: collapse;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

@media screen and (max-width: 600px) {
  table.pricelist {
    width: 80%;
    margin: 30px auto;
    border-collapse: collapse;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
   }
   #footer, a{
	margin-bottom: 20px;
	font-size: 15 px;
	color: white;
	text-decoration:none;
	font-weight: bold;
	transition: .75s;
	   }
}

@media (min-width: 601px) and (max-width: 1000px) {
  table.pricelist {
    width: 80%;
    margin: 30px auto;
    border-collapse: collapse;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
  }
  #footer, a{
	margin-bottom: 20px;
	font-size: 15px;
	color: white;
	text-decoration:none;
	font-weight: bold;
	transition: .75s;
	   }
}

table.pricelist thead {
    background-color: #3498db;
    color: white;
}

table.pricelist tbody {
    background-color: #f2f6fc;
}

table.pricelist td {
    padding: 15px;
    font-size: 10px;
	font-weight: bold;
}

table.pricelist .btn-wrapper {
    text-align: center;
}

table.pricelist .btn-wrapper button {
    background: linear-gradient(45deg, #1abc9c, #16a085);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

table.pricelist .btn-wrapper button:hover {
    background: linear-gradient(45deg, #16a085, #1abc9c);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(22, 160, 133, 0.2);
}

/* ModĂĄlnĂ­ okno */
#myModal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

#myModal .modal-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 30px;
    width: 40%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: scaleIn 0.3s ease;
}

#myModal2 {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

#myModal2 .modal-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 30px;
    width: 40%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: scaleIn 0.3s ease;
}

/* Responsive columns */
@media screen and (max-width: 600px) {
  #myModal .modal-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 30px;
    width: 80%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: scaleIn 0.3s ease;
}
  #myModal2 .modal-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 30px;
    width: 80%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: scaleIn 0.3s ease;
}

}

@media (min-width: 601px) and (max-width: 1000px) {
  #myModal .modal-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 30px;
    width: 750%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: scaleIn 0.3s ease;
}
  #myModal2 .modal-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 30px;
    width: 750%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: scaleIn 0.3s ease;
}
}


#myModal .modal-content label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

#myModal .modal-content input[type="text"],
#myModal .modal-content input[type="number"],
#myModal .modal-content input[type="tel"],
#myModal .modal-content input[type="email"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #dcdfe6;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

#myModal .modal-content input[type="text"]:focus,
#myModal .modal-content input[type="number"]:focus,
#myModal .modal-content input[type="tel"]:focus,
#myModal .modal-content input[type="email"]:focus {
    border-color: #3498db;
    outline: none;
}

#myModal .modal-content input[type="submit"] {
    background: #3498db;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.2s ease;
}


span.close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #aaa;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

span.close:hover {
    color: #333;
}

r {
    color: red;
	font-weight: bold;
}

/* Footer */
#footer, a{
	margin-bottom: 20px;
	font-size: 20px;
	color: white;
	text-decoration:none;
	font-weight: bold;
	transition: .75s;
	   }

#footer a:hover{
	color: black;
	text-decoration:none;
	transition: .75s;
	   }

/* Animace */
@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}