.paper-output {
    margin-bottom: 40px;
}

.paper-output h2 {
    border-bottom: 2px solid #8C9FB1;
    padding-bottom: 8px;
    margin-top: 30px;
    color: #23282d;
}

.paper-output .widefat {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-radius: 4px;
    overflow: hidden;
    table-layout: fixed;
}

.paper-output .widefat thead th {
    background-color: #f1f1f1;
    padding: 12px 10px;
    text-align: left;
    font-weight: 600;
    color: #23282d;
    border-bottom: 1px solid #e1e1e1;
}

.paper-output table tr:nth-child(2n+1) td {
    background: white;
}

.paper-output .widefat tbody td {
    padding: 12px 10px;
    border-bottom: 1px solid #f1f1f1;
    word-wrap: break-word;
}

.paper-output .widefat tbody tr:hover {
    background-color: #f9f9f9;
}

.paper-output .widefat a {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.2s;
}

.paper-output .widefat a:hover {
    color: #00a0d2;
    text-decoration: underline;
}

.paper-single-view table tr:nth-child(2n+1) td {
    background: white;
}

.paper-single-view {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.paper-single-view h1 {
    font-size: 24px;
    color: #23282d;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.paper-single-view table {
    width: 100%;
    border-collapse: collapse;
}

.paper-single-view th {
    width: 30%;
    padding: 12px 10px;
    text-align: left;
    vertical-align: top;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.paper-single-view td {
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
}

.paper-single-view .back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #0073aa;
    text-decoration: none;
}

.paper-single-view .back-link:hover {
    text-decoration: underline;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .paper-output .widefat thead {
        display: none;
    }
    
    .paper-output .widefat tbody td {
        display: block;
        text-align: right;
        padding-left: 50%;
        position: relative;
    }
    
    .paper-output .widefat tbody td:before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 45%;
        white-space: nowrap;
        text-align: left;
        font-weight: 600;
    }
    
    .paper-single-view th,
    .paper-single-view td {
        display: block;
        width: 100%;
    }
}

.paper-output tr.status-accepted td {
    background-color: rgba(70, 180, 80, 0.3) !important; /* Leichtes Grün für akzeptierte Papers */
}

.paper-output tr.status-accepted:hover {
    background-color: rgba(70, 180, 80, 0.4) !important;/* Etwas dunkleres Grün beim Hover */
}

.paper-output tr.status-rejected td {
    background-color: rgba(220, 50, 50, 0.3) !important; /* Leichtes Rot für abgelehnte Papers */
}

.paper-output tr.status-rejected:hover {
    background-color: rgba(220, 50, 50, 0.4) !important; /* Etwas dunkleres Rot beim Hover */
}
