#dice-roller-card {
    background: linear-gradient(145deg, #ffffff, #f9fafb);
    animation: slideInUp 0.8s ease-out;
    box-shadow: 0 12px 28px 0 rgba(0, 0, 0, 0.08), 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* History List Styles */
#history-list {
    scrollbar-width: thin;
    scrollbar-color: #a5b4fc #eef2ff;
}

#history-list::-webkit-scrollbar {
    width: 6px;
}

#history-list::-webkit-scrollbar-track {
    background: #eef2ff;
    border-radius: 3px;
}

#history-list::-webkit-scrollbar-thumb {
    background-color: #a5b4fc;
    border-radius: 3px;
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background-color: #f3f4f6;
    border-radius: 0.375rem;
    animation: fadeIn 0.5s ease;
}

.history-item .font-bold {
    color: #0284c7;
    /* sky-600 */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}