table,
.static-form {
    width: 80% !important;
    margin-left: auto;
    margin-right: auto;
}

.problem-card {
    width: max-content;
    margin: 2rem auto;
    background: var(--surface-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px var(--shadow-medium);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
}

.problem-header {
    padding: 2rem;
    padding-right: 5rem;
    flex: 1;
}

.problem-title {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: left;
}

.problem-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.problem-actions {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--border-color);
}

.auth-prompt {
    width: 80%;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--surface-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-light);
}



@media (max-width: 768px) {
    .problem-card {
        margin: 1rem;
        flex-direction: column;
        align-items: stretch;
    }
    
    .problem-header {
        padding: 1.5rem;
    }
    
    .problem-title {
        font-size: 1.5rem;
    }
    
    .problem-actions {
        padding: 1rem 1.5rem;
        border-left: none;
        border-top: 1px solid var(--border-color);
        justify-content: center;
    }
}