body {
    font-family: 'Segoe UI', sans-serif;
    background: #f8f9fc;
    margin: 0;
    padding: 20px;
    color: #333;
}

.container {
    max-width: 720px;
    margin: 0 auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

h2 {
    color: #4a4a4a;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

form input, form textarea, form select {
    width: 100%;
    padding: 12px;
    margin: 10px 0 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 16px;
}

button {
    background-color: #007bff;
    color: #fff;
    padding: 12px 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

.status {
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
}

.status.pending { background: #fff3cd; color: #856404; }
.status.underreview { background: #cce5ff; color: #004085; }
.status.confirmed { background: #d4edda; color: #155724; }
.status.rejected, .status.closedbyuser, .status.closedbyadmin { background: #f8d7da; color: #721c24; }

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.table th, .table td {
    border-bottom: 1px solid #eee;
    padding: 12px;
    text-align: left;
}