/* CSS styly pro Levné Letenky Popup */

.popup-overlay {
    padding: 20px; 
    display: none; /* Počáteční stav - skryto */
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex; 
    justify-content: center;
    align-items: center;    
    background-color: rgba(7, 28, 46, 0.8); /* Ztmavení pozadí */
}

.popup-container {
    background-color: #071c2e; 
    color: #ffffff;
    padding: 30px 35px;
    border-radius: 10px;
    text-align: center;
    max-width: 380px; 
    width: 90%; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    position: relative; 
    opacity: 0; 
    transform: scale(0.9);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.popup-overlay.visible .popup-container {
    opacity: 1;
    transform: scale(1);
}

.popup-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    color: #cccccc;
    font-size: 1.8em; 
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.popup-close-btn:hover {
    color: #ffffff; 
}

.popup-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    min-height: 30px; 
}

img.logo-image {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 110px;
  margin: 0 auto 1em auto;
}

.logo-text {
    font-size: 1.1em;
    font-weight: bold; 
    vertical-align: middle;
}

.popup-headline {
    font-size: 2em; 
    font-weight: 700; 
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #ffcc33 !important;
}

.popup-headline h2 {
    font-size: 2em; 
    font-weight: 700; 
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #ffcc33;
}

#popup-description {
    font-size: 1em; 
    margin-top: 0;
    margin-bottom: 25px;
    opacity: 0.9;
    color: #fff !important; 
}

.popup-form {
    display: flex;
    flex-direction: column; 
}

.popup-input {
    width: 100%;
    /* Změna: Explicitní nastavení výšky a úprava paddingu */
    height: 50px;
    padding: 0 15px;
    border: 2px solid #ffffff; /* Rámeček pro konzistentní rozměry */
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 1em;
    box-sizing: border-box; 
    background-color: #ffffff;
    color: #333;
}

.popup-input::placeholder {
    color: #888; 
}

.popup-button {
    width: 100%;
    /* Změna: Explicitní nastavení výšky a stabilní rámeček */
    height: 50px;
    padding: 0 20px;
    border: 2px solid #ffcc33;
    border-radius: 6px;
    background-color: #ffcc33; 
    color: #111111; 
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    box-sizing: border-box;
    /* Novinka: Flexbox pro dokonalé centrování textu uvnitř tlačítka */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.popup-button:hover {
    background-color: #e6b82e; 
    border-color: #e6b82e;
}

.popup-message {
    padding: 10px;
    margin-top: 15px;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
}
.popup-message--status { 
    background-color: #e0e0e0;
    color: #333;
}
.popup-message--success {
    background-color: #d4edda; 
    color: #155724;
    border: 1px solid #c3e6cb;
}
.popup-message--error {
    background-color: #f8d7da; 
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

#levneletenky-popup-overlay {
  z-index: 9999 !important;
}