body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card {
    border: none;
    border-radius: 15px;
}

.card-header {
    border-radius: 15px 15px 0 0 !important;
}

.result-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.info-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.info-item .label {
    font-weight: 600;
    color: #495057;
    min-width: 120px;
}

.info-item .value {
    color: #212529;
    flex: 1;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    background-color: #0d6efd;
    color: white;
    font-weight: 500;
}

.info-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #0d6efd;
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
}

.timeline-marker {
    position: absolute;
    left: -30px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #0d6efd;
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px #0d6efd;
}

.timeline-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.timeline-time {
    color: #6c757d;
    font-size: 0.9rem;
}

.timeline-event {
    font-weight: 600;
    color: #0d6efd;
}

.timeline-body p {
    margin-bottom: 8px;
    color: #495057;
}

@media (max-width: 768px) {
    .info-item {
        flex-direction: column;
    }
    
    .info-item .label {
        margin-bottom: 5px;
    }
    
    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .timeline-time {
        margin-bottom: 5px;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline:before {
        left: 5px;
    }
    
    .timeline-marker {
        left: -20px;
    }
}