body {
    font-family: 'Interstate', sans-serif;
    background: #f9f9fb;
    margin: 0;
    padding: 20px;
    color: #333;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.status-banner {
    background: #2ecc71;
    color: white;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    font-weight: bold;
}

.section {
    margin-top: 20px;
}

.status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.status-row:last-child {
    border-bottom: none;
}

.status-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-status i {
    color: #2ecc71;
}

.failed-status i {
    color: #ed4337;
}

.timestamp {
    font-size: 0.9em;
    color: #555;
}

.footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9em;
}

.footer a {
    color: #007BFF;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95em;
}

.activity-item i {
    color: #3498db;
}

@media (max-width: 600px) {
    .status-row {
        flex-direction: column;
        align-items: flex-start;
    }
}