.result-container {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 20px auto 50px;
    max-width: 1200px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.card {
    flex: 1;
    max-width: 800px;
}

.parameters-container {
    flex: 0 0 280px;
    margin-left: 20px;
}

.parameters-table {
    border-collapse: collapse;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.parameters-table th,
.parameters-table td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-size: 0.9em;
}

.parameters-table th {
    background-color: #f8f9fa;
    font-weight: bold;
    width: 45%;
}

.parameters-table tr:last-child td,
.parameters-table tr:last-child th {
    border-bottom: none;
}
