
.info-page {
    padding: 24px;
}

.info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.info-header h1 {
    margin: 0;
    font-size: 30px;
}

.info-header p {
    margin-top: 8px;
    color: #666;
}

.info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.info-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    margin-bottom: 18px;
}

.info-card h2 {
    margin-top: 0;
    font-size: 21px;
}

.info-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-form label {
    font-weight: 600;
    color: #333;
}

.info-form textarea {
    min-height: 130px;
    resize: vertical;
}

.info-form input,
.info-form select,
.info-form textarea {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 11px 12px;
    font-size: 15px;
    width: 100%;
    box-sizing: border-box;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.primary-btn,
.secondary-btn,
button {
    border: none;
    border-radius: 12px;
    padding: 10px 14px;
    cursor: pointer;
    font-weight: 600;
}

.primary-btn {
    background: #c4001a;
    color: white;
}

.secondary-btn,
button {
    background: #f1f1f1;
    color: #222;
}

button.danger {
    background: #ffe0e0;
    color: #9b0000;
}

.speech-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.speech-row span {
    color: #666;
    font-size: 14px;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 11px;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: top;
}

th {
    background: #fafafa;
}

.actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.actions form {
    margin: 0;
}

.result-list,
.task-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.result-item,
.task-item {
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 16px;
    background: #fafafa;
}

.result-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.result-top h3 {
    margin: 0;
    font-size: 18px;
}

.result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: #666;
    font-size: 13px;
    margin-top: 10px;
}

.result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    align-items: center;
}

.result-actions form {
    margin: 0;
}

.result-actions a {
    text-decoration: none;
    background: #c4001a;
    color: white;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 600;
}

.badge {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.badge-hoch {
    background: #ffe0e0;
    color: #9b0000;
}

.badge-mittel {
    background: #fff3cd;
    color: #7a5b00;
}

.badge-niedrig {
    background: #e8f4ff;
    color: #075985;
}

.task-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.task-item p {
    margin: 6px 0;
    color: #555;
}

@media (max-width: 1000px) {
    .info-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .speech-row,
    .task-item {
        align-items: stretch;
        flex-direction: column;
    }
}
