body {
    background-color: #f8f9fa;
}
.status-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: #fff;
}
.status-result-card {
    margin-top: 30px;
    border-left: 5px solid;
}
.status-pending { border-color: #ffc107; } /* Warning yellow */
.status-accepted { border-color: #28a745; } /* Success green */
.status-rejected { border-color: #dc3545; } /* Danger red */
.status-not-found { border-color: #6c757d; } /* Secondary grey */

.status-icon {
    font-size: 2rem;
    margin-right: 15px;
    vertical-align: middle;
}
.status-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #343a40;
}
.status-detail-label {
    font-weight: bold;
}