.history-container {
    max-width: 900px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.history-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    transition: background-color 0.3s, transform 0.2s;
    cursor: pointer;
}
.history-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.history-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.history-item-info {
    flex-grow: 1;
}

.history-item-info .name {
    font-weight: 500;
    color: white;
    font-size: 16px;
}
.history-item-info .time {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

.pagination-controls {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.pagination-btn {
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
    color: white;
}
.pagination-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.4);
    border-color: white;
}
.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.loader, .message {
    color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    text-align: center;
    background: rgba(0,0,0,0.1);
    border-radius: 12px;
} 