/* Import Google Font - Open Sans */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

/* Styly pro vylepšené formuláře */
.form-list-enhanced li {
    margin-bottom: 1em;
    display: flex;
    align-items: flex-start;
    background: #fafafa;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.form-list-enhanced li:hover {
    background: #f0f8ff;
    border-color: #2196F3;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.1);
}

.form-bullet {
    color: orange;
    font-size: 1.8em;
    line-height: 1;
    margin-right: 10px;
    flex-shrink: 0;
}

.form-content {
    flex: 1;
}

.form-title {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.form-description {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.button-container {
    display: flex;
    gap: 10px; /* Zvětšený gap mezi tlačítky pro lepší oddělení */
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* Obecné styly pro všechna tlačítka btn-text */
.btn-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 30px;
    height: 44px;
    color: white; /* Výchozí barva písma je bílá */
    text-decoration: none;
    border-radius: 999px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 14px;
    text-transform: uppercase;
    transition: all 0.2s linear;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
    white-space: nowrap;
    overflow-wrap: normal;
}

.btn-text:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    /* Barva písma zůstává bílá, není potřeba nic specifikovat, pokud je výchozí bílá */
}

.btn-text:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition-duration: 0.1s;
}

/* Ikony uvnitř tlačítek */
.btn-text img {
    margin-right: 8px;
    height: 1.2em;
}

/* Styly pro ikony v HTML, pokud jsou jako emoji nebo znaky */
.btn-text > span:first-child {
    margin-right: 8px;
}


/* Barva pro tlačítko "Stáhnout PDF" */
.btn-text.download {
    background: linear-gradient(to right, rgb(255, 150, 53), rgb(255, 120, 0));
}

.btn-text.download:hover {
    background: linear-gradient(to right, rgb(255, 120, 0), rgb(255, 100, 0));
    color: white; /* Explicitně nastavíme bílou barvu textu při najetí */
}

/* Barva pro tlačítko "Zobrazit" */
.btn-text.view {
    background: linear-gradient(to right, rgb(37, 168, 193), rgb(0, 140, 160));
}

.btn-text.view:hover {
    background: linear-gradient(to right, rgb(0, 140, 160), rgb(0, 120, 140));
    color: white; /* Explicitně nastavíme bílou barvu textu při najetí */
}

/* Barva pro tlačítko "Online" */
.btn-text.online {
    background: linear-gradient(to right, rgb(179, 200, 227), rgb(150, 180, 210));
}

.btn-text.online:hover {
    background: linear-gradient(to right, rgb(150, 180, 210), rgb(120, 150, 180));
    color: black; /* Barva textu se změní na černou při najetí */
}

.download-tip {
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    border-left: 4px solid #2196F3;
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
}

.download-tip::before {
    content: "💡";
    font-size: 1.2em;
    margin-right: 8px;
}

.download-tip strong {
    color: #1976D2;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
    z-index: 9999;
    max-width: 320px;
    transform: translateX(400px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.notification.show {
    transform: translateX(0);
}

.notification strong {
    display: block;
    margin-bottom: 5px;
}

.notification small {
    opacity: 0.9;
}

@media (max-width: 600px) {
    .form-list-enhanced li {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-bullet {
        margin-bottom: 10px;
    }

    .button-container {
        justify-content: flex-start;
    }

    .btn-text {
        width: 100%;
    }
}