﻿.modern-list {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.modern-list-item {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(241, 245, 249, 0.5);
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15), 0 8px 20px -8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

    .modern-list-item:hover {
        background: rgba(255, 255, 255, 0.95);
        transform: translateX(4px);
    }

    .modern-list-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
