
.erp_module_recent_activities {
    height: auto; /* Fill the height of the parent */
    overflow-y: auto; /* Allow scrolling if content overflows */
}

.erp_module_recent_activities-item {
    margin-bottom: 5px; /* Space between items */
    padding: 8px 10px;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.erp_module_recent_activities-item-title {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px; /* Space between title and description */
    display: flex; /* Enable flex layout */
    align-items: center; /* Vertically center items */
    justify-content: space-between; /* Push title and checkbox apart */
}

.erp_module_recent_activities-item-description {
    font-size: 11px;
    color: #666;
    margin-bottom: 8px; /* Space between description and details */
    line-height: 1.4; /* Improve readability */
}

.erp_module_recent_activities-item-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px; /* Space between detail items */
}

.erp_module_recent_activities-item-details .erp_module_recent_activities-item-detail {
    font-size: 12px;
    color: #888;
    background-color: #f0f0f0;
    padding: 4px 8px;
    border-radius: 4px;
}


.erp_module_recent_activities-item-checkbox {
  display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    min-width: 16px;
    border-radius: 3px;
    border: 1px solid #444;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 8px; /* Add space between title and checkbox */
    transition: all 0.15s ease;

}

.erp_module_recent_activities-item-checkbox:hover {
  border-color: #4a90e2;
  background: rgba(29, 89, 158, 0.15);
  
}

.erp_module_recent_activities-item-checkbox-checked {
  content: "✓";
  color: white;
  font-size: 9px;
  font-weight: bold;
  background-color:#4fbd4f;
}