.icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.icon-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 6px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #333;
}
.icon-list li i {
    width: 22px;
    margin-right: 10px;
    text-align: center;
    color: #f39c12; /* Matches your btn-warning theme */
    flex-shrink: 0;
    margin-top: 3px;
}
/* Optional: Hover effect */
.icon-list li:hover i {
    color: #e67e22;
    transition: color 0.2s ease;
}