/**
 * Styly pro děkovnou stránku po úspěšné objednávce
 */

.itv-thank-you-page {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    max-width: 800px;
    margin: 30px auto;
}

.itv-thank-you-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
}

.itv-thank-you-header h2 {
    color: #6231ED;
    font-size: 28px;
    margin-bottom: 15px;
}

.itv-thank-you-message {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.itv-thank-you-summary {
    margin-bottom: 40px;
}

.itv-thank-you-summary h3 {
    font-size: 20px;
    color: #444;
    margin-bottom: 20px;
}

.itv-form-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.itv-form-table th {
    background-color: #f7f7f7;
    padding: 12px 15px;
    text-align: left;
    font-weight: bold;
    color: #444;
    border-bottom: 2px solid #eaeaea;
}

.itv-form-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eaeaea;
    color: #666;
}

.itv-form-table .itv-total-row {
    background-color: #f9f9f9;
}

.itv-form-table .itv-total-row td {
    font-size: 16px;
    color: #333;
}

.itv-thank-you-next-steps {
    background-color: #f9fafb;
    border-radius: 6px;
    padding: 25px;
    margin-bottom: 40px;
}

.itv-thank-you-next-steps h3 {
    font-size: 20px;
    color: #444;
    margin-bottom: 15px;
}

.itv-thank-you-next-steps ol {
    padding-left: 20px;
}

.itv-thank-you-next-steps li {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.itv-thank-you-buttons {
    text-align: center;
}

.itv-button {
    display: inline-block;
    background-color: #6231ED;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s;
}

.itv-button:hover {
    background-color: #4919d7;
    color: white;
    text-decoration: none;
}

.itv-thank-you-error {
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    max-width: 600px;
    margin: 30px auto;
}

.itv-thank-you-error h2 {
    color: #e74c3c;
    margin-bottom: 20px;
}

/* Responzivní design pro mobily */
@media (max-width: 768px) {
    .itv-thank-you-page {
        padding: 20px;
        margin: 15px auto;
    }
    
    .itv-thank-you-header h2 {
        font-size: 24px;
    }
    
    .itv-form-table th,
    .itv-form-table td {
        padding: 8px 10px;
        font-size: 14px;
    }
}