.error-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    color: #721c24;
}

.error-container h2 {
    margin-top: 0;
    color: #721c24;
}

.error-message {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
    padding: 15px;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
}

.success-message {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
    padding: 15px;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    color: #155724;
}

.contact-form {
    margin-top: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.contact-form h3 {
    margin-top: 0;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.submit-button {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.submit-button:hover {
    background-color: #218838;
}

.submit-button:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

.email-link {
    color: #721c24;
    text-decoration: underline;
}

.email-link:hover {
    color: #5a1a1f;
}

.dokobit-info {
    margin-top: 20px;
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.dokobit-info h3 {
    margin-top: 0;
    color: #333;
    font-size: 16px;
}

.dokobit-info table {
    width: 100%;
    border-collapse: collapse;
}

.dokobit-info table td {
    padding: 5px;
}

.dokobit-info table td:first-child {
    font-weight: bold;
    width: 150px;
}

.dokobit-info table td:last-child {
    word-break: break-all;
}

.dokobit-info .token-value {
    font-size: 12px;
    color: #666;
}

@media (max-width: 600px) {
    .error-container {
        margin: 20px auto;
        padding: 18px;
        max-width: min(96vw, 600px);
    }

    .dokobit-info table,
    .dokobit-info tbody,
    .dokobit-info tr {
        display: block;
        width: 100%;
    }

    .dokobit-info tr {
        margin-bottom: 10px;
        border-bottom: 1px solid #eee;
        padding-bottom: 8px;
    }

    .dokobit-info table td {
        display: block;
        width: 100% !important;
        padding: 4px 0;
        box-sizing: border-box;
    }

    .dokobit-info table td:first-child {
        padding-top: 8px;
    }
}

@media (min-width: 601px) {
    .dokobit-info table {
        table-layout: fixed;
    }

    .dokobit-info table td:first-child {
        width: 40%;
        max-width: 220px;
    }
}

