.request-page-wrapper {
    max-width: 900px;
    margin: 20px auto;
    padding: 10px;
}

.request-card-main {
    background: #fff;
    border-radius: 20px;
    padding: 22px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(15,23,42,0.08);
    margin-bottom: 16px;
}

.request-card-main h2 {
    margin-bottom: 10px;
}

.request-meta {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 12px;
}

.request-description-box {
    background: #f8fafc;
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 14px;
}

.request-actions-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.request-primary-btn {
    flex: 1;
    background: #2563eb;
    color: #fff;
    border-radius: 14px;
    padding: 14px;
    font-weight: 700;
    text-align: center;
    border: none;
    cursor: pointer;
}

.request-primary-btn:hover {
    background: #1d4ed8;
}

.request-secondary-btn {
    flex: 1;
    background: #e2e8f0;
    border-radius: 14px;
    padding: 14px;
    font-weight: 700;
    text-align: center;
    border: none;
    cursor: pointer;
}

.request-secondary-btn:hover {
    background: #cbd5e1;
}

.review-box {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    border: 1px solid #e2e8f0;
    margin-top: 14px;
}

.review-box textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    padding: 12px;
    margin-bottom: 10px;
}