.activity-log-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    max-height: 80vh;
    overflow-y: auto;
}

.activity-log-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.activity-log-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-icon i {
    font-size: 1.2rem;
}

.activity-content {
    flex: 1;
}

.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.activity-user {
    font-weight: bold;
    color: #1976d2;
}

.activity-time {
    color: #666;
    font-size: 0.9rem;
}

.activity-details {
    color: #333;
}

.activity-details strong {
    color: #1976d2;
    font-size: 0.9rem;
}

.activity-details p {
    margin: 0.5rem 0 0;
    color: #666;
}

/* Action colors */
.text-success {
    color: #28a745;
}

.text-primary {
    color: #1976d2;
}

.text-danger {
    color: #dc3545;
}

.text-warning {
    color: #ffc107;
}

.text-info {
    color: #17a2b8;
}

/* Scrollbar styles */
.activity-log-container::-webkit-scrollbar {
    width: 8px;
}

.activity-log-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.activity-log-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.activity-log-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}