body {
    background: #05080f;
    color: white;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.top-nav {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.back-link { color: white; text-decoration: none; font-size: 20px; }

.history-container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Har bir xarid xabari */
.history-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: fadeInUp 0.5s ease forwards;
}

.icon-box {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 18px;
}

.info-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.info-box .user-name {
    font-weight: 800;
    color: #22c55e;
}

.info-box .time {
    display: block;
    font-size: 11px;
    color: #64748b;
    margin-top: 4px;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
