@keyframes green-pulse-dark {
    0% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(39, 174, 96, 0); }
    100% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0); }
}

.pulse-green-animation-dark {
    animation: green-pulse-dark 2s infinite;
}

.rule-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.bg-green-light { background-color: #e9f7ef; }
.text-green { color: #27ae60 !important; }
.bg-red-light { background-color: #fce8e8; }

.rule-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hover-up-green:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.15);
    border-color: #27ae60 !important;
}

.hover-up-green:hover .rule-icon {
    transform: scale(1.1);
    background-color: #27ae60;
    color: #fff !important;
}

.highlight-card {
    border-top: 4px solid #27ae60 !important;
}

.lh-lg { line-height: 2 !important; }
.border-success { border-color: #27ae60 !important; }
.rounded-4 { border-radius: 1rem !important; }